File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
javascript/ql/src/semmle/javascript/security/dataflow Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 9
9
10
10
import javascript
11
11
import CleartextLoggingCustomizations:: CleartextLogging
12
+ private import CleartextLoggingCustomizations:: CleartextLogging as CleartextLogging
12
13
13
14
/**
14
15
* A taint tracking configuration for clear-text logging of sensitive information.
@@ -33,10 +34,10 @@ class Configuration extends TaintTracking::Configuration {
33
34
override predicate isSanitizer ( DataFlow:: Node node ) { node instanceof Barrier }
34
35
35
36
override predicate isSanitizerEdge ( DataFlow:: Node pred , DataFlow:: Node succ ) {
36
- isSanitizerEdge ( pred , succ )
37
+ CleartextLogging :: isSanitizerEdge ( pred , succ )
37
38
}
38
39
39
40
override predicate isAdditionalTaintStep ( DataFlow:: Node src , DataFlow:: Node trg ) {
40
- isAdditionalTaintStep ( src , trg )
41
+ CleartextLogging :: isAdditionalTaintStep ( src , trg )
41
42
}
42
43
}
You can’t perform that action at this time.
0 commit comments