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 b018040 commit bbe2bf2Copy full SHA for bbe2bf2
cpp/ql/src/Security/CWE/CWE-311/CleartextTransmission.ql
@@ -249,7 +249,9 @@ module FromSensitiveConfig implements DataFlow::ConfigSig {
249
predicate observeDiffInformedIncrementalMode() { any() }
250
251
Location getASelectedSinkLocation(DataFlow::Node sink) {
252
- exists(NetworkSendRecv networkSendRecv | result = networkSendRecv.getLocation() |
+ exists(NetworkSendRecv networkSendRecv |
253
+ result = [networkSendRecv.getLocation(), sink.getLocation()]
254
+ |
255
isSinkSendRecv(sink, networkSendRecv)
256
)
257
}
0 commit comments