Rename SSL configuration and fix PathGraph

This commit is contained in:
Ed Minnix
2023-03-09 17:15:21 -05:00
parent efdfc2d0c3
commit 752620a34d
2 changed files with 4 additions and 4 deletions

View File

@@ -14,12 +14,12 @@
import java
import semmle.code.java.security.InsecureLdapAuthQuery
import InsecureLdapAuthQuery::PathGraph
import InsecureUrlFlowConfiguration::PathGraph
from InsecureUrlFlowConfiguration::PathNode source, InsecureUrlFlowConfiguration::PathNode sink
where
InsecureUrlFlowConfiguration::hasFlowPath(source, sink) and
BasicAuthFlowConfiguration::hasFlowTo(sink.getNode()) and
not SslFlowConfiguration::hasFlowTo(sink.getNode())
not RequiresSslConfiguration::hasFlowTo(sink.getNode())
select sink.getNode(), source, sink, "Insecure LDAP authentication from $@.", source.getNode(),
"LDAP connection string"