We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59c43c7 commit e4f5679Copy full SHA for e4f5679
java/ql/lib/semmle/code/java/security/XssLocalQuery.qll
@@ -12,6 +12,14 @@ module XssLocalConfig implements DataFlow::ConfigSig {
12
predicate isSource(DataFlow::Node source) { source instanceof LocalUserInput }
13
14
predicate isSink(DataFlow::Node sink) { sink instanceof XssSink }
15
+
16
+ predicate isBarrier(DataFlow::Node node) { node instanceof XssSanitizer }
17
18
+ predicate isBarrierOut(DataFlow::Node node) { node instanceof XssSinkBarrier }
19
20
+ predicate isAdditionalFlowStep(DataFlow::Node node1, DataFlow::Node node2) {
21
+ any(XssAdditionalTaintStep s).step(node1, node2)
22
+ }
23
}
24
25
/**
0 commit comments