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 99
1010import javascript
1111import CleartextLoggingCustomizations:: CleartextLogging
12+ private import CleartextLoggingCustomizations:: CleartextLogging as CleartextLogging
1213
1314/**
1415 * A taint tracking configuration for clear-text logging of sensitive information.
@@ -33,10 +34,10 @@ class Configuration extends TaintTracking::Configuration {
3334 override predicate isSanitizer ( DataFlow:: Node node ) { node instanceof Barrier }
3435
3536 override predicate isSanitizerEdge ( DataFlow:: Node pred , DataFlow:: Node succ ) {
36- isSanitizerEdge ( pred , succ )
37+ CleartextLogging :: isSanitizerEdge ( pred , succ )
3738 }
3839
3940 override predicate isAdditionalTaintStep ( DataFlow:: Node src , DataFlow:: Node trg ) {
40- isAdditionalTaintStep ( src , trg )
41+ CleartextLogging :: isAdditionalTaintStep ( src , trg )
4142 }
4243}
You can’t perform that action at this time.
0 commit comments