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 f82683c commit b142a79Copy full SHA for b142a79
cpp/ql/src/Security/CWE/CWE-311/CleartextTransmission.ql
@@ -177,10 +177,6 @@ class FromSensitiveConfiguration extends TaintTracking::Configuration {
177
}
178
179
override predicate isAdditionalTaintStep(DataFlow::Node node1, DataFlow::Node node2) {
180
- // flow from pre-update to post-update of the source
181
- isSource(node1) and
182
- node2.(DataFlow::PostUpdateNode).getPreUpdateNode() = node1
183
- or
184
// flow through encryption functions to the return value (in case we can reach other sinks)
185
node2.asExpr().(Encrypted).(FunctionCall).getAnArgument() = node1.asExpr()
186
0 commit comments