We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1cc2793 commit db3df32Copy full SHA for db3df32
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