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 b4724e4 commit 675b088Copy full SHA for 675b088
cpp/ql/src/Security/CWE/CWE-290/AuthenticationBypass.ql
@@ -72,6 +72,12 @@ module Config implements DataFlow::ConfigSig {
72
predicate isSource(DataFlow::Node source) { isSource(source, _) }
73
74
predicate isSink(DataFlow::Node sink) { isSink(sink, _) }
75
+
76
+ predicate observeDiffInformedIncrementalMode() { any() }
77
78
+ Location getASelectedSinkLocation(DataFlow::Node sink) {
79
+ exists(Expr condition | result = condition.getLocation() | isSink(sink, condition))
80
+ }
81
}
82
83
module Flow = TaintTracking::Global<Config>;
0 commit comments