You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I run sudo ./hashcatch --setup I have this error:
[+] The adapter is working in monitor mode!
./hashcatch: line 88: /etc/hashcatch/hashcatch.conf: The file or directory does not exist
[!] The following packages are missing. Please ensure that you have installed them properly before starting hashcatch
hashcat-utils
But I have installed this package.
Can anyone help me.
A greeting and thanks
The text was updated successfully, but these errors were encountered:
hashcatch checks for cap2hccapx in path. If you compiled hashcat-utils yourself (not sure for already packaged versions like in Kali), the file is called cap2hccapx.bin. Make sure you remove the .bin file extensions in /usr/local/bin.
Anyway, hashcatch also relies on wlanhcxinfo which has been removed from hcxtools since v6.1.2 for being deprecated. So you might hit another dead end after fixing your hashcat-utils message, depending on where you get hcxtools from.
You might need to compile hcxtools v6.1.1 yourself to get wlanhcxinfo back.
git clone https://github.com/hashcat/hashcat-utils
cd hashcat-utils/src && make
for i in *.bin; do mv "$i" /usr/local/bin/"`echo $i | sed 's/\.bin//'`"; done
Hello,
When I run
sudo ./hashcatch --setup
I have this error:But I have installed this package.
Can anyone help me.
A greeting and thanks
The text was updated successfully, but these errors were encountered: