Skip to content

Commit

Permalink
2.3.1 - Save keys if recovery stopped by user
Browse files Browse the repository at this point in the history
  • Loading branch information
AloneLiberty committed May 5, 2023
1 parent ef9ff6d commit ecaa2f3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions FlipperNested/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,9 +168,10 @@ def extract_nonces_from_flipper(self):
if self.save:
open(file["name"], "w+").write(contents)
print("[?] Saved nonces to", file["name"])
if self.recover_keys():
break
stop = self.recover_keys()
self.save_keys_to_flipper()
if stop:
break

def extract_nonces_from_file(self, file):
self.filename = file.name
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
with open("README.md", "r") as fh:
long_description = fh.read()

setuptools.setup(name="FlipperNested", version="2.3.0", author="AloneLiberty",
setuptools.setup(name="FlipperNested", version="2.3.1", author="AloneLiberty",
description="Recover keys from collected nonces", long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/AloneLiberty/FlipperNestedRecovery",
Expand Down

0 comments on commit ecaa2f3

Please sign in to comment.