gobuster dir -u http://192.168.1.151:5655 --wordlist=./pinkdbcrunsh -x .db
wfuzz -t 100 -w /tmp/wordlist -w /tmp/ext --sc=200 -c http://192.168.1.151:5655/FUZZ.FUZ2Z
需要生成一个 长度 在 3-5之间的 的单词列表 使用-f 加载一个字符集用来枚举 指定为小写字母
crunch 3 5 -f /usr/share/crunch/charset.lst
lalpha -o pinkyadmin
/usr/share/crunch/charset.lst
是一个在 Linux 系统中 Crunch 密码破解工具使用的文件, Crunch 可以根据用户定义的字符集和长度规则生成大量的密码组合。
这个文件 charset.lst
包含了 Crunch 可以用于生成密码的各种字符集。每个字符集代表一组可能用于密码中的字符。例如,它可能包含小写字母、大写字母、数字、特殊字符等字符集。用户可以根据自己的需要选择和组合这些字符集来生成密码列表。
It looks like you’re using the crunch
tool to generate wordlists. Let’s break down the command you’ve provided:
看起来您正在使用 crunch
工具来生成单词列表。让我们分解一下您提供的命令:
crunch
: This is the command itself, used to generate wordlists.
crunch
:这是命令本身,用于生成单词列表。3 5
: These numbers specify the minimum and maximum length of the words to be generated. In this case, it’s generating words with lengths ranging from 3 to 5 characters.
3 5
:这些数字指定要生成的单词的最小和最大长度。在本例中,它生成长度为 3 到 5 个字符的单词。-f /usr/share/crunch/charset.lst
: This option specifies the character set to be used for generating words. It’s using a custom character set located at/usr/share/crunch/charset.lst
.
-f /usr/share/crunch/charset.lst
:此选项指定用于生成单词的字符集。它使用位于/usr/share/crunch/charset.lst
的自定义字符集。lalpha
: This option specifies that only lowercase alphabets should be used for generating words.
lalpha
:此选项指定仅使用小写字母来生成单词。-o pinkdbcrunsh
: This specifies the output file name. The wordlist will be saved in a file namedpinkdbcrunsh
.
-o pinkdbcrunsh
:指定输出文件名。单词列表将保存在名为pinkdbcrunsh
的文件中。
So, the command is generating a wordlist containing lowercase alphabetical words with lengths ranging from 3 to 5 characters, using a custom character set, and saving the output to a file named pinkdbcrunsh
.
因此,该命令使用自定义字符集生成一个包含小写字母单词、长度范围为 3 到 5 个字符的单词列表,并将输出保存到名为 pinkdbcrunsh
的文件中