remove constraint for Zip::File.open

This commit is contained in:
thiggy1342
2022-06-06 21:20:44 +00:00
committed by GitHub
parent 3c62271dba
commit 62291124ff
2 changed files with 0 additions and 5 deletions

View File

@@ -22,7 +22,6 @@ class DecompressionApiUse extends DataFlow::Node {
// this should find the first argument of Zlib::Inflate.inflate or Zip::File.extract
DecompressionApiUse() {
this = API::getTopLevelMember("Zlib").getMember("Inflate").getAMethodCall("inflate").getArgument(0) or
this = API::getTopLevelMember("Zip").getMember("File").getAMethodCall("open").getArgument(0) or
this = API::getTopLevelMember("Zip").getMember("Entry").getAMethodCall("extract").getArgument(0)
}