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>;
80
80
/**
81
81
* A taint-tracking configuration for tracking flow from local user input to the creation of a path.
82
82
*/
83
- module TaintedPathLocalConfig implements DataFlow:: ConfigSig {
83
+ deprecated module TaintedPathLocalConfig implements DataFlow:: ConfigSig {
84
84
predicate isSource ( DataFlow:: Node source ) { source instanceof LocalUserInput }
85
85
86
86
predicate isSink ( DataFlow:: Node sink ) { sink instanceof TaintedPathSink }
@@ -95,5 +95,9 @@ module TaintedPathLocalConfig implements DataFlow::ConfigSig {
95
95
}
96
96
}
97
97
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