如果文章对你有用,点赞,评论支持一下。
学习记录
kali字典生成
crunch
生成字典
生成由“123”组成的2-3位数字典
root@kali:~# crunch 1 2 abc
Crunch will now generate the following amount of data: 33 bytes
0 MB
0 GB
0 TB
0 PB
Crunch will now generate the following number of lines: 12
a
b
c
aa
ab
ac
ba
bb
bc
ca
cb
cc
重定向到路径
将生成字典重定向到路径/root/box/pwd.txt
root@kali:~# crunch 2 3 abc >> /root/box/pwd.txt
Crunch will now generate the following amount of data: 135 bytes
0 MB
0 GB
0 TB
0 PB
Crunch will now generate the following number of lines: 36
查看字典
root@kali:~/box# cat /root/box/pwd.txt
aa
ab
ac
ba
bb
bc
ca
cb
cc
aaa
按格式生成
crunch 8 8 -t 2018%%%%
生成以2018开头的8位数,%代表任意0-9数字
root@kali:~/box# crunch 8 8 -t 2018%%%% >> /root/box/pwd.txt
Crunch will now generate the following amount of data: 90000 bytes
0 MB
0 GB
0 TB
0 PB
Crunch will now generate the following number of lines: 10000
也可以以如下格式
crunch 8 8 -t ab%%%%cd
kali自带字典路径
/usr/share/wordlists/
参考文章
比较详细的介绍文章:crunch命令详解 以及使用方法(综合我的经验).