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 eee8b51 commit ef88eceCopy full SHA for ef88ece
java/ql/lib/semmle/code/java/security/TaintedPermissionsCheckQuery.qll
@@ -59,6 +59,15 @@ module TaintedPermissionsCheckFlowConfig implements DataFlow::ConfigSig {
59
predicate isSink(DataFlow::Node sink) {
60
sink.asExpr() = any(PermissionsConstruction p).getInput()
61
}
62
+
63
+ predicate observeDiffInformedIncrementalMode() { any() }
64
65
+ Location getASelectedSinkLocation(DataFlow::Node sink) {
66
+ exists(PermissionsConstruction p |
67
+ sink.asExpr() = p.getInput() and
68
+ result = p.getLocation()
69
+ )
70
+ }
71
72
73
/** Tracks flow from user input to a permissions check. */
0 commit comments