File tree Expand file tree Collapse file tree 3 files changed +7
-32
lines changed
lib/semmle/code/java/security Expand file tree Collapse file tree 3 files changed +7
-32
lines changed Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ module TaintedPathFlow = TaintTracking::Global<TaintedPathConfig>;
8080/**
8181 * A taint-tracking configuration for tracking flow from local user input to the creation of a path.
8282 */
83- module TaintedPathLocalConfig implements DataFlow:: ConfigSig {
83+ deprecated module TaintedPathLocalConfig implements DataFlow:: ConfigSig {
8484 predicate isSource ( DataFlow:: Node source ) { source instanceof LocalUserInput }
8585
8686 predicate isSink ( DataFlow:: Node sink ) { sink instanceof TaintedPathSink }
@@ -95,5 +95,9 @@ module TaintedPathLocalConfig implements DataFlow::ConfigSig {
9595 }
9696}
9797
98- /** Tracks flow from local user input to the creation of a path. */
99- module TaintedPathLocalFlow = TaintTracking:: Global< TaintedPathLocalConfig > ;
98+ /**
99+ * DEPRECATED: Use `TaintedPathFlow` instead and configure threat model sources to include `local`.
100+ *
101+ * Tracks flow from local user input to the creation of a path.
102+ */
103+ deprecated module TaintedPathLocalFlow = TaintTracking:: Global< TaintedPathLocalConfig > ;
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments