Metamask (26600) token lenght exception - high iteration
#1
hi -, want to crack wallet my friend, and i have a little question about this... he create more then 1000 adresses in metamask, and hash data exceeded >7000. So i had error like this:

hashcat (v6.2.5) starting

CUDA API (CUDA 11.7)
====================
* Device #1: NVIDIA GeForce RTX 2080 Ti, 10138/11263 MB, 68MCU
* Device #2: NVIDIA GeForce RTX 2080 Ti, 10138/11263 MB, 68MCU
* Device #3: NVIDIA GeForce RTX 2080 Ti, 10138/11263 MB, 68MCU
* Device #4: NVIDIA GeForce RTX 2080 Ti, 10138/11263 MB, 68MCU
* Device #5: NVIDIA GeForce RTX 2080 Ti, 10138/11263 MB, 68MCU
* Device #6: NVIDIA GeForce RTX 2080 Ti, 10138/11263 MB, 68MCU
* Device #7: NVIDIA GeForce RTX 2080 Ti, 10138/11263 MB, 68MCU
* Device #8: NVIDIA GeForce RTX 2080 Ti, 10138/11263 MB, 68MCU

OpenCL API (OpenCL 3.0 CUDA 11.7.57) - Platform #1 [NVIDIA Corporation]
=======================================================================
* Device #9: NVIDIA GeForce RTX 2080 Ti, skipped
* Device #10: NVIDIA GeForce RTX 2080 Ti, skipped
* Device #11: NVIDIA GeForce RTX 2080 Ti, skipped
* Device #12: NVIDIA GeForce RTX 2080 Ti, skipped
* Device #13: NVIDIA GeForce RTX 2080 Ti, skipped
* Device #14: NVIDIA GeForce RTX 2080 Ti, skipped
* Device #15: NVIDIA GeForce RTX 2080 Ti, skipped
* Device #16: NVIDIA GeForce RTX 2080 Ti, skipped

Minimum password length supported by kernel: 8
Maximum password length supported by kernel: 256

Hashfile 'hash.txt' on line 1 ($metam...NShUesDQqBiWC6aMEeZAHeECfwPhMgc9): Token length exception
No hashes loaded.

Started: Tue Aug 23 22:34:30 2022
Stopped: Tue Aug 23 22:34:34 2022
how i can fix it? i heard that exists argument, which can ignore hash token length, or what i should to do? 


Thanks you so much =)
Reply
#2
(08-23-2022, 09:39 PM)disgust1n Wrote: Hashfile 'hash.txt' on line 1 ($metam...NShUesDQqBiWC6aMEeZAHeECfwPhMgc9): Token length exception
No hashes loaded.

how i can fix it? i heard that exists argument, which can ignore hash token length, or what i should to do? 

Thanks you so much =)

token lenght exception tells you, that something is wrong with your hash, its a safety check for valid input

when taking a look into the source of module 26600 you will see, that after $metamask$ (numbers are lenght of the expected string between the $)

$metamask$ 44 $ 24 $ 64 to max lenght of CT_MAX_LEN_BASE64 (dont know exactly 3000-4000)

if your hash doesnt fit, then you will not be able to attack it with this module (at least not in this actual form)
Reply