1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-11-15 04:23:06 +00:00

Merge pull request #3480 from PenguinKeeper7/master

Update exodus2hashcat.py
This commit is contained in:
Jens Steube 2022-10-21 14:11:56 +02:00 committed by GitHub
commit 452408fcaf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -21,10 +21,6 @@ if len(sys.argv) != 2 :
print("Error, usage exodus2hashcat.py <path to exodus seed.seco file>") print("Error, usage exodus2hashcat.py <path to exodus seed.seco file>")
sys.exit(1) sys.exit(1)
if os.path.basename(sys.argv[1])!= 'seed.seco':
print("Error, usage exodus2hashcat.py <path to exodus seed.seco file>")
sys.exit(1)
with open(sys.argv[1],'rb') as fd: with open(sys.argv[1],'rb') as fd:
seedBuffer = fd.read() seedBuffer = fd.read()