hashcat命令行

命令选项
hashcat-cli64.exe -m 2611 -a 3  all.txt -1 ?l  ?1?1?1?1?1?1?1?1   --pw-min=6 --pw-max=8
-1 ?1 ?1?1?1?1?1?1?1?1
注意第一个是1,第二个是l,表示字符集1全是字母。
第三个是1,表示mask使用了字符集1中的,即全部是字母。
--pw-min=6 --pw-max=8密码长度是6-8。
以前有个increment选项,hashcat是没有的,oclHashcat使用increment选项。

运行命令后,拍回车,会显示当前的进度。



hashcat-cli64.exe -m 2611 -a 3  all.txt -1 ?l?d  ?1?1?1?1?1?1?1?1  --pw-min=6 --pw-max=8

这个表示字符集1,是数字和字母。


CPU占用率到了99%

hashcat-cli32.bin -m 2611 -a 3 all.txt -1 ?l ?1?1?1?1?1?1?1?1 -o 1.txt

如果直接这么用,从1开始到8

hashcat-cli32.bin -m 2611 -a 3 all.txt -1 ?l ?1?1?1?1?1?1?1?1 -o 1.txt --pw-min=8 --pw-max=8

固定密码长度是8


使用字典破解

-m 2611 -a 0 all.txt password.txt


oclhashcat使用了increment

oclHashcat64.exe -m 2611 -a 3  all.txt -1 ?l?d  ?1?1?1?1?1?1?1?1  -o 1.txt --increment --increment-min=8 --increment-max=8

运行命令后,界面会提示输入选项,如果输入s,会显示当前状态和进度。



你可能感兴趣的:(网络)