exodus hash
#1
I can't pull the hash from seed.seco

Code:
C:\hashcat-6.2.6\tools>C:\hashcat-6.2.6\tools\exodus2hashcat.py seed.seco
Traceback (most recent call last):
  File "C:\hashcat-6.2.6\tools\exodus2hashcat.py", line 34, in <module>
    n = int.from_bytes(seedBuffer[0x120:0x124],"big")
AttributeError: type object 'int' has no attribute 'from_bytes'
Reply
#2
see output of

Code:
python -V

i think your python version is outdated 2.7.*, as this method was introduced in python 3.2, update to a recent python 3 version
Reply
#3
[quote="Снупи" pid='56558' dateline='1666786319']
см. вывод

[код]питон -V[/код]

я думаю, что ваша версия Python устарела 2.7. *, поскольку этот метод был введен в Python 3.2, обновите до последней версии Python 3
[/цитировать]
On the new version of pythen, instead of the hash, I just get the inscription "python".
Reply
#4
it could be that you will need to invoke python3 instead of python as it is possible to use both versions side by side

python -V
Python 2.7.18

python3 -V
Python 3.9.0
Reply
#5
(10-26-2022, 02:18 PM)Snoopy Wrote: it could be that you will need to invoke python3 instead of python as it is possible to use both versions side by side

python -V
Python 2.7.18

python3 -V
Python 3.9.0

Thanks, I figured it out!
Reply