C++/UseOfHttp

This commit is contained in:
Nora Dimitrijević
2025-10-15 14:35:13 +02:00
parent a65d4d5997
commit ec63547925

View File

@@ -91,10 +91,8 @@ module HttpStringToUrlOpenConfig implements DataFlow::ConfigSig {
predicate observeDiffInformedIncrementalMode() { any() } predicate observeDiffInformedIncrementalMode() { any() }
Location getASelectedSourceLocation(DataFlow::Node source) { Location getASelectedSourceLocation(DataFlow::Node source) {
result = source.asIndirectExpr().getLocation() result = [source.asIndirectExpr().getLocation(), source.getLocation()]
} }
Location getASelectedSinkLocation(DataFlow::Node sink) { none() }
} }
module HttpStringToUrlOpen = TaintTracking::Global<HttpStringToUrlOpenConfig>; module HttpStringToUrlOpen = TaintTracking::Global<HttpStringToUrlOpenConfig>;