hashcat Forum

Full Version: exodus hash
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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'
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
[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".
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
(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!