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 3d033fd commit 17cdd16Copy full SHA for 17cdd16
java/ql/lib/semmle/code/java/security/JndiInjectionQuery.qll
@@ -38,7 +38,9 @@ module JndiInjectionFlowConfig implements DataFlow::ConfigSig {
38
predicate isSink(DataFlow::Node sink) { sink instanceof JndiInjectionSink }
39
40
predicate isBarrier(DataFlow::Node node) {
41
- node.getType() instanceof PrimitiveType or node.getType() instanceof BoxedType
+ node.getType() instanceof PrimitiveType or
42
+ node.getType() instanceof BoxedType or
43
+ node instanceof JndiInjectionSanitizer
44
}
45
46
predicate isAdditionalFlowStep(DataFlow::Node node1, DataFlow::Node node2) {
0 commit comments