hashcat Forum
exodus hash - Printable Version

+- hashcat Forum (https://hashcat.net/forum)
+-- Forum: Support (https://hashcat.net/forum/forum-3.html)
+--- Forum: hashcat (https://hashcat.net/forum/forum-45.html)
+--- Thread: exodus hash (/thread-11088.html)



exodus hash - EXP - 10-26-2022

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'



RE: exodus hash - Snoopy - 10-26-2022

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


RE: exodus hash - EXP - 10-26-2022

[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".


RE: exodus hash - Snoopy - 10-26-2022

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


RE: exodus hash - EXP - 10-26-2022

(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!