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 8560868 commit c0c96eaCopy full SHA for c0c96ea
cpp/ql/src/Security/CWE/CWE-319/UseOfHttp.ql
@@ -87,6 +87,14 @@ module HttpStringToUrlOpenConfig implements DataFlow::ConfigSig {
87
sink.asIndirectExpr() = fc.getArgument(3)
88
)
89
}
90
+
91
+ predicate observeDiffInformedIncrementalMode() { any() }
92
93
+ Location getASelectedSourceLocation(DataFlow::Node source) {
94
+ result = source.asIndirectExpr().getLocation()
95
+ }
96
97
+ Location getASelectedSinkLocation(DataFlow::Node sink) { none() }
98
99
100
module HttpStringToUrlOpen = TaintTracking::Global<HttpStringToUrlOpenConfig>;
0 commit comments