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 c0c8902 commit 0d72d35Copy full SHA for 0d72d35
java/ql/lib/semmle/code/java/security/UnsafeCertTrustQuery.qll
@@ -14,6 +14,14 @@ module SslEndpointIdentificationFlowConfig implements DataFlow::ConfigSig {
14
predicate isSink(DataFlow::Node sink) { sink instanceof SslConnectionCreation }
15
16
predicate isBarrier(DataFlow::Node sanitizer) { sanitizer instanceof SslUnsafeCertTrustSanitizer }
17
+
18
+ predicate observeDiffInformedIncrementalMode() { any() }
19
20
+ Location getASelectedSourceLocation(DataFlow::Node source) { none() }
21
22
+ Location getASelectedSinkLocation(DataFlow::Node sink) {
23
+ exists(Expr unsafeTrust | result = unsafeTrust.getLocation() | sink.asExpr() = unsafeTrust)
24
+ }
25
}
26
27
/**
0 commit comments