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 80da00b commit 36d43a4Copy full SHA for 36d43a4
cpp/ql/src/Security/CWE/CWE-079/CgiXss.ql
@@ -39,6 +39,12 @@ module Config implements DataFlow::ConfigSig {
39
or
40
node.asCertainDefinition().getUnspecifiedType() instanceof ArithmeticType
41
}
42
+
43
+ predicate observeDiffInformedIncrementalMode() { any() }
44
45
+ Location getASelectedSourceLocation(DataFlow::Node source) {
46
+ exists(QueryString query | result = query.getLocation() | query = source.asIndirectExpr())
47
+ }
48
49
50
module Flow = TaintTracking::Global<Config>;
0 commit comments