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 1f5d853 commit 40aac5eCopy full SHA for 40aac5e
csharp/ql/src/Security Features/CWE-798/HardcodedConnectionString.ql
@@ -38,6 +38,12 @@ module ConnectionStringConfig implements DataFlow::ConfigSig {
38
}
39
40
predicate isBarrier(DataFlow::Node node) { node instanceof StringFormatSanitizer }
41
+
42
+ predicate observeDiffInformedIncrementalMode() { any() }
43
44
+ Location getASelectedSinkLocation(DataFlow::Node sink) {
45
+ any(Call call | call.getAnArgument() = sink.asExpr()).getLocation() = result
46
+ }
47
48
49
/**
0 commit comments