Skip to content

Commit

Permalink
Correctly write encrypted file data for failed to decrypt files
Browse files Browse the repository at this point in the history
  • Loading branch information
extremecoders-re authored Oct 12, 2023
1 parent 16e8b2b commit 063b2ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyinstxtractor-ng.py
Original file line number Diff line number Diff line change
Expand Up @@ -482,7 +482,7 @@ def _extractPyz(self, name, one_dir):
filePath
)
)
open(filePath + ".encrypted", "wb").write(data)
open(filePath + ".encrypted", "wb").write(data_copy)
continue

self._writePyc(filePath, data)
Expand Down

0 comments on commit 063b2ea

Please sign in to comment.