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 1ec0f53 commit a0e17eeCopy full SHA for a0e17ee
powershell/ql/lib/semmle/code/powershell/dataflow/internal/TaintTrackingPrivate.qll
@@ -15,7 +15,10 @@ predicate defaultTaintSanitizer(DataFlow::Node node) { none() }
15
* of `c` at sinks and inputs to additional taint steps.
16
*/
17
bindingset[node]
18
-predicate defaultImplicitTaintRead(DataFlow::Node node, DataFlow::ContentSet c) { none() }
+predicate defaultImplicitTaintRead(DataFlow::Node node, DataFlow::ContentSet c) {
19
+ node instanceof ArgumentNode and
20
+ c.isAnyElement()
21
+}
22
23
cached
24
private module Cached {
0 commit comments