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 36d43a4 commit 7df09f3Copy full SHA for 7df09f3
cpp/ql/src/Security/CWE/CWE-089/SqlTainted.ql
@@ -54,6 +54,12 @@ module SqlTaintedConfig implements DataFlow::ConfigSig {
54
sql.barrierSqlArgument(input, _)
55
)
56
}
57
+
58
+ predicate observeDiffInformedIncrementalMode() { any() }
59
60
+ Location getASelectedSinkLocation(DataFlow::Node sink) {
61
+ exists(Expr taintedArg | result = taintedArg.getLocation() | taintedArg = asSinkExpr(sink))
62
+ }
63
64
65
module SqlTainted = TaintTracking::Global<SqlTaintedConfig>;
0 commit comments