mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-14 10:37:23 -07:00
shame on me
This commit is contained in:
parent
e0e43e728c
commit
1656f1f8ce
1 changed files with 4 additions and 4 deletions
|
@ -157,7 +157,7 @@ for sec in range(NUM_SECTORS):
|
|||
with out:
|
||||
p.console(cmd)
|
||||
for line in out.captured_output.split('\n'):
|
||||
if "aborted via keyboard":
|
||||
if "aborted via keyboard" in line:
|
||||
abort = True
|
||||
if "found:" in line:
|
||||
found_keys[sec][key_type] = line[30:]
|
||||
|
@ -182,7 +182,7 @@ for sec in range(NUM_SECTORS):
|
|||
with out:
|
||||
p.console(cmd)
|
||||
for line in out.captured_output.split('\n'):
|
||||
if "aborted via keyboard":
|
||||
if "aborted via keyboard" in line:
|
||||
abort = True
|
||||
if "found:" in line:
|
||||
found_keys[sec][key_type] = line[30:]
|
||||
|
@ -203,7 +203,7 @@ for sec in range(NUM_SECTORS):
|
|||
with out:
|
||||
p.console(cmd)
|
||||
for line in out.captured_output.split('\n'):
|
||||
if "aborted via keyboard":
|
||||
if "aborted via keyboard" in line:
|
||||
abort = True
|
||||
if "found:" in line:
|
||||
found_keys[sec][0] = line[30:]
|
||||
|
@ -245,7 +245,7 @@ for sec in range(NUM_SECTORS):
|
|||
with out:
|
||||
p.console(cmd)
|
||||
for line in out.captured_output.split('\n'):
|
||||
if "aborted via keyboard":
|
||||
if "aborted via keyboard" in line:
|
||||
abort = True
|
||||
if "found:" in line:
|
||||
found_keys[sec][key_type_target] = line[30:]
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue