HashPals / Search-That-Hash

🔎Searches Hash APIs to crack your hash quickly🔎 If hash is not found, automatically pipes into HashCat⚡

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Use of optimised kernels

PenguinKeeper7 opened this issue · comments

By default, the script uses the unoptimised kernels, by adding -O to:

command = f"cd {config['hashcat_folder']} && {config['hashcat_exe_name']} -a 0 -m {possible_type} {hash_formatted} {config['wordlist']}"

It should get an easy and free speed increase with the only draw back of a slightly reduced max plain length, typically from 255 to 32 characters

> hashcat -m 0 -w 4 -b --quiet
Hashmode: 0 - MD5

Speed.#1.........:  4996.0 MH/s (170.43ms) @ Accel:64 Loops:1024 Thr:1024 Vec:1

> hashcat -m 0 -w 4 -b --quiet -O
Hashmode: 0 - MD5

Speed.#1.........:  9154.5 MH/s (90.30ms) @ Accel:64 Loops:1024 Thr:1024 Vec:1

Interesting, I'll take a look at this now.

Thank you 🙂