Skip to content

Commit 2d73405

Browse files
committed
1 parent 74b37e7 commit 2d73405

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

java/ql/lib/semmle/code/java/security/InsecureLdapAuthQuery.qll

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,10 @@ private module BasicAuthConfig implements DataFlow::ConfigSig {
4040
}
4141

4242
predicate isSink(DataFlow::Node sink) { sink instanceof InsecureLdapUrlSink }
43+
44+
predicate observeDiffInformedIncrementalMode() {
45+
none() // used as secondary flow to InsecureLdapUrlFlow in InsecureLdapAuth.ql
46+
}
4347
}
4448

4549
module BasicAuthFlow = DataFlow::Global<BasicAuthConfig>;
@@ -56,6 +60,10 @@ private module RequiresSslConfig implements DataFlow::ConfigSig {
5660
}
5761

5862
predicate isSink(DataFlow::Node sink) { sink instanceof InsecureLdapUrlSink }
63+
64+
predicate observeDiffInformedIncrementalMode() {
65+
none() // only used negatively in InsecureLdapAuth.ql
66+
}
5967
}
6068

6169
module RequiresSslFlow = DataFlow::Global<RequiresSslConfig>;

0 commit comments

Comments
 (0)