1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-11-05 06:58:56 +00:00
hashcat/example17040.sh

17 lines
556 B
Bash
Raw Normal View History

2023-06-26 11:34:41 +00:00
#!/bin/bash
FILE="./hashcat.exe"
if [[ -f "$FILE" ]]; then
echo "we found hashcat.exe binary so use that" #wsl
else
FILE="./hashcat"
if [[ -f "$FILE" ]]; then
echo "we found ./hashcat binary so use that" #linux
else
echo "could not find hashcat binary, compile it first using make"
exit
fi
fi
$FILE -a0 -m17040 tools/refdata/m17040/ref1-cast5.hash tools/refdata/m17040/ref1-cast5.txt --potfile-disable
$FILE -a0 -m17040 tools/refdata/m17040/ref2-cast5.hash tools/refdata/m17040/ref2-cast5.txt --potfile-disable