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 53e1939 commit 6c3345eCopy full SHA for 6c3345e
csharp/ql/lib/semmle/code/csharp/security/dataflow/ConditionalBypassQuery.qll
@@ -39,6 +39,15 @@ private module ConditionalBypassConfig implements DataFlow::ConfigSig {
39
predicate isSink(DataFlow::Node sink) { sink instanceof Sink }
40
41
predicate isBarrier(DataFlow::Node node) { node instanceof Sanitizer }
42
+
43
+ predicate observeDiffInformedIncrementalMode() { any() }
44
45
+ Location getASelectedSinkLocation(DataFlow::Node sink) {
46
+ result = sink.getLocation()
47
+ or
48
+ // from ConditionalBypass.ql
49
+ result = sink.(Sink).getSensitiveMethodCall().getLocation()
50
+ }
51
}
52
53
/**
0 commit comments