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 0c636dd commit 5b9e37cCopy full SHA for 5b9e37c
cpp/ql/src/Security/CWE/CWE-807/TaintedCondition.ql
@@ -65,6 +65,16 @@ module Config implements DataFlow::ConfigSig {
65
iFrom1 != iFrom2
66
)
67
}
68
+
69
+ predicate observeDiffInformedIncrementalMode() { any() }
70
71
+ Location getASelectedSinkLocation(DataFlow::Node sink) {
72
+ result = sink.getLocation()
73
+ or
74
+ exists(Expr raise | result = raise.getLocation() |
75
+ sensitiveCondition([sink.asExpr(), sink.asIndirectExpr()], raise)
76
+ )
77
+ }
78
79
80
module Flow = TaintTracking::Global<Config>;
0 commit comments