[DIFF-INFORMED] Go: ConditionalBypass

This commit is contained in:
Nora Dimitrijević
2025-07-16 11:37:34 +02:00
parent 19b373aa90
commit 7bd6703f19

View File

@@ -22,6 +22,10 @@ module Config implements DataFlow::ConfigSig {
predicate isSink(DataFlow::Node sink) {
exists(ComparisonExpr c | c.getAnOperand() = sink.asExpr())
}
predicate observeDiffInformedIncrementalMode() {
none() // can't override the locations accurately because of secondary use of config.
}
}
/** Tracks taint flow for reasoning about conditional bypass. */