trustedsec / hate_crack

A tool for automating cracking methodologies through Hashcat from the TrustedSec team.
https://www.trustedsec.com
1.64k stars 259 forks source link

Support for hashcat bin file not located in hashcat directory #4

Closed bandrel closed 6 years ago

bandrel commented 6 years ago

The default installation for hashcat in Kali has the binary file for hashcat located in /usr/bin/hashcat The existing code assumes that the hashcat bin is located in the same directory as the rest of the hashcat files, but in Kali these are located in /usr/share/hashcat

A workaround until this can be fixed is to add a symbolic link in the /usr/share directory using the following command cd /usr/share/hashcat && ln -s /usr/bin/hashcat hashcat

bandrel commented 6 years ago

This should be fixed in PR #7