Meow's Testing Tools - hashcat
[toc]
hashcat
install
1
2
3
4
5
6
7
8
# official web
https://hashcat.net/hashcat/
cd /hashcat-6.1.1
sudo make
# execute hash cat
./hashcat --help
auto install script
1
2
3
4
5
6
7
8
9
#!/bin/bash
git clone https://github.com/hashcat/hashcat.git
mkdir -p hashcat/deps
git clone https://github.com/KhronosGroup/OpenCL-Headers.git hashcat/deps/OpenCL
cd hashcat/ && make
./hashcat --version
./hashcat -b -D 1,2
./example0.sh
Sample To Use
.
This post is licensed under CC BY 4.0 by the author.
Comments powered by Disqus.