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 a65d4d5 commit ec63547Copy full SHA for ec63547
cpp/ql/src/Security/CWE/CWE-319/UseOfHttp.ql
@@ -91,10 +91,8 @@ module HttpStringToUrlOpenConfig implements DataFlow::ConfigSig {
91
predicate observeDiffInformedIncrementalMode() { any() }
92
93
Location getASelectedSourceLocation(DataFlow::Node source) {
94
- result = source.asIndirectExpr().getLocation()
+ result = [source.asIndirectExpr().getLocation(), source.getLocation()]
95
}
96
-
97
- Location getASelectedSinkLocation(DataFlow::Node sink) { none() }
98
99
100
module HttpStringToUrlOpen = TaintTracking::Global<HttpStringToUrlOpenConfig>;
0 commit comments