Skip to content

Commit ecaa2f3

Browse files
committed
2.3.1 - Save keys if recovery stopped by user
1 parent ef9ff6d commit ecaa2f3

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

FlipperNested/main.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -168,9 +168,10 @@ def extract_nonces_from_flipper(self):
168168
if self.save:
169169
open(file["name"], "w+").write(contents)
170170
print("[?] Saved nonces to", file["name"])
171-
if self.recover_keys():
172-
break
171+
stop = self.recover_keys()
173172
self.save_keys_to_flipper()
173+
if stop:
174+
break
174175

175176
def extract_nonces_from_file(self, file):
176177
self.filename = file.name

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
with open("README.md", "r") as fh:
3434
long_description = fh.read()
3535

36-
setuptools.setup(name="FlipperNested", version="2.3.0", author="AloneLiberty",
36+
setuptools.setup(name="FlipperNested", version="2.3.1", author="AloneLiberty",
3737
description="Recover keys from collected nonces", long_description=long_description,
3838
long_description_content_type="text/markdown",
3939
url="https://github.com/AloneLiberty/FlipperNestedRecovery",

0 commit comments

Comments
 (0)