红联Linux门户
Linux帮助

Kali Linux使用crunch生成密码字典

发布时间:2016-07-03 15:00:31来源:topspeedsnail.com作者:Elephant And Balloon
crunch是生成密码字典的工具,通常用在暴力破解中。
Crunch can create a wordlist based on criteria you specify. The output from crunch can be sent to the screen, file, or to another program.
 
几个例子
生成4个数字组合的密码字典:
# crunch 4 4 0123456789 -o ~/wordlist.txt
第一个4代表生成的字符串最短几个字符,第二个4代表生成的字符串最长几个字符。
 
生成4个字母和1980组合的密码字典:
# crunch 8 8 abcdefghiABCDE -t @@@@1980 -o ~/wordlist.txt
字符集必须按小写,大写,数字,符号的顺序,使用\做为转译字符。
 
生成4个小写字母4个数字组合的密码字典:
# crunch 8 8 -t @@@@%%%% -o ~/wordlist.txt
 
更多信息,查看crunch的man手册,写的非常详细:
# man crunch
 
本文永久更新地址:http://www.linuxdiyf.com/linux/22027.html