user13121564
user13121564

Reputation:

Hash 'hashcat': Token length exception

hashcat64.exe hashcat -m0 -a0 crackme.txt password.txt

Device #1: Intel's OpenCL runtime(GPU only) is currently broken. We are waiting for updated OpenCL drivers from Intel

Hash 'hashcat': Token length exception No hashes loaded.

I'm getting this message. I've attached a snapshot of my CL. I've looked for any spaces in the hash directory and its format. I've also tried changing all the Unicode formats of the .txt file. Nothing seems to work. I've also updated the intel drivers.\

Can anyone help please. Thanks in advance.enter image description here

Upvotes: 6

Views: 63620

Answers (3)

memtha
memtha

Reputation: 864

This error can also occur if the hash file is not found. Note that the restore file effectively encodes the absolute path to the hash file, so this error can occur if it has moved when attempting to resume. (technically it saves the potentially relative path as specified when originally run, but it also saves the original working directory and cds there first)

Upvotes: 0

Manish Tirkey
Manish Tirkey

Reputation: 221

I think you should look end of each line in your hash password containing files. If spaces are at there end of lines then you will get an error "token length exception" or "No hashes loaded". Just remove those spaces and then try.

Upvotes: 4

user13121564
user13121564

Reputation:

For anyone looking into this : I used two rules, you can use many of others to increase the efficiency.

hashcat64.exe hashcat -m0 -a0 crackme.txt password.txt -r rules/best64.rule

or

hashcat64.exe hashcat -m0 -a0 crackme.txt password.txt -r rules/d3ad0ne.rule

Upvotes: 1

Related Questions