File tree Expand file tree Collapse file tree 1 file changed +8
-0
lines changed
java/ql/lib/semmle/code/java/security Expand file tree Collapse file tree 1 file changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -40,6 +40,10 @@ private module BasicAuthConfig implements DataFlow::ConfigSig {
40
40
}
41
41
42
42
predicate isSink ( DataFlow:: Node sink ) { sink instanceof InsecureLdapUrlSink }
43
+
44
+ predicate observeDiffInformedIncrementalMode ( ) {
45
+ none ( ) // used as secondary flow to InsecureLdapUrlFlow in InsecureLdapAuth.ql
46
+ }
43
47
}
44
48
45
49
module BasicAuthFlow = DataFlow:: Global< BasicAuthConfig > ;
@@ -56,6 +60,10 @@ private module RequiresSslConfig implements DataFlow::ConfigSig {
56
60
}
57
61
58
62
predicate isSink ( DataFlow:: Node sink ) { sink instanceof InsecureLdapUrlSink }
63
+
64
+ predicate observeDiffInformedIncrementalMode ( ) {
65
+ none ( ) // only used negatively in InsecureLdapAuth.ql
66
+ }
59
67
}
60
68
61
69
module RequiresSslFlow = DataFlow:: Global< RequiresSslConfig > ;
You can’t perform that action at this time.
0 commit comments