Posts: 3
Threads: 1
Joined: Oct 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'
Posts: 889
Threads: 15
Joined: Sep 2017
10-26-2022, 02:11 PM
(This post was last modified: 10-26-2022, 02:13 PM by Snoopy.)
see output of
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
Posts: 3
Threads: 1
Joined: Oct 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".
Posts: 889
Threads: 15
Joined: Sep 2017
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
Posts: 3
Threads: 1
Joined: Oct 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!