mirror of
https://github.com/brannondorsey/naive-hashcat.git
synced 2025-07-23 05:44:52 +02:00
commit
060ccb05da
@ -14,12 +14,20 @@ if [ "$(uname)" == 'Darwin' ] ; then
|
|||||||
echo "Please run ./build-hashcat-osx.sh and try again."
|
echo "Please run ./build-hashcat-osx.sh and try again."
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
# check Linux
|
||||||
elif [ "$(uname)" == 'Linux' ] ; then
|
elif [ "$(uname)" == 'Linux' ] ; then
|
||||||
if [ $(uname -m) == 'x86_64' ]; then
|
if [ $(uname -m) == 'x86_64' ]; then
|
||||||
HASHCAT="./hashcat-3.6.0/hashcat64.bin"
|
HASHCAT="./hashcat-3.6.0/hashcat64.bin"
|
||||||
else
|
else
|
||||||
HASHCAT="./hashcat-3.6.0/hashcat32.bin"
|
HASHCAT="./hashcat-3.6.0/hashcat32.bin"
|
||||||
fi
|
fi
|
||||||
|
# check Windows
|
||||||
|
elif [ "$(uname)" == 'MINGW64_NT-10.0' ] ; then
|
||||||
|
if [ $(uname -m) == 'x86_64' ]; then
|
||||||
|
HASHCAT="./hashcat-3.6.0/hashcat64.exe"
|
||||||
|
else
|
||||||
|
HASHCAT="./hashcat-3.6.0/hashcat32.exe"
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# LIGHT
|
# LIGHT
|
||||||
|
Loading…
x
Reference in New Issue
Block a user