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 5527221 commit cccf6e6Copy full SHA for cccf6e6
go/ql/src/experimental/CWE-807/SensitiveConditionBypass.qll
@@ -59,6 +59,14 @@ private module Config implements DataFlow::ConfigSig {
59
not c.isPotentialFalsePositive()
60
)
61
}
62
+
63
+ predicate observeDiffInformedIncrementalMode() { any() }
64
65
+ Location getASelectedSourceLocation(DataFlow::Node source) { none() }
66
67
+ Location getASelectedSinkLocation(DataFlow::Node sink) {
68
+ exists(ComparisonExpr comp | result = comp.getLocation() | sink.asExpr() = comp.getAnOperand())
69
+ }
70
71
72
/**
0 commit comments