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 4196230 commit 16ef504Copy full SHA for 16ef504
python/ql/src/experimental/Security/UnsafeUnpackQuery.qll
@@ -103,7 +103,7 @@ class UnsafeUnpackingConfig extends TaintTracking::Configuration {
103
// For a call to `file.extractall` without `members` argument, `file` is considered a sink.
104
exists(MethodCallNode call, AllTarfileOpens atfo |
105
call = atfo.getReturn().getMember("extractall").getACall() and
106
- not exists(Node arg | arg = call.getArgByName("members")) and
+ not exists(call.getArgByName("members")) and
107
sink = call.getObject()
108
)
109
or
0 commit comments