Skip to content

Commit

Permalink
Bugfix with passing try_multiple_passwords to extract_zip
Browse files Browse the repository at this point in the history
  • Loading branch information
cccs-kevin committed Dec 22, 2023
1 parent d5c9264 commit 4dd685b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion analyzer/windows/modules/packages/zip.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ def start(self, path):
file_names = []
try:
zipinfos = get_infos(path)
extract_zip(path, root, password, 0)
extract_zip(path, root, password, 0, try_multiple_passwords)
for f in zipinfos:
file_names.append(f.filename)
except CuckooPackageError as e:
Expand Down

0 comments on commit 4dd685b

Please sign in to comment.