比较详细的实操栗子
https://www.freebuf.com/column/228732.html
WPScan
https://github.com/wpscanteam/wpscan
docker run -it --rm wpscanteam/wpscan --url https://target.tld/ --enumerate u
# 枚举用户
wpscan –-url www.kyweb.net –enumerate u
wpscan –-url www.kyweb.net –enumerate u1-100
# 指定密码字典
wpscan -–url www.kyweb.net --passwords wd.txt --usernames 用户名
docker run -it -v /home/zcs/tttt:/data:ro --rm wpscanteam/wpscan --url gm10086.cn --passwords /data/wd.txt --usernames gm
# 枚举易攻击插件
wpscan --url 10.11.5.62 -e vp
# 枚举易攻击主题
wpscan --url www.xxxxx.wiki -e vt
curnch 创建密码字典
https://www.cnblogs.com/goser/articles/7729390.html
https://github.com/crunchsec/crunch
https://sourceforge.net/projects/crunch-wordlist/
# 安装
wget https://sourceforge.net/projects/crunch-wordlist/files/crunch-wordlist/crunch-3.6.tgz
tar xf crunch-3.6.tgz
cd crunch-3.6
gcc -Wall -lm -pthread -std=c99 -m64 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 crunch.c -o crunch -lm
make install
* usage: ./crunch <min-len> <max-len> [charset]
* e.g: ./crunch 3 7 abcdef
* crunch <from-len> <to-len> [-f <path to charset.lst> charset-name] [-o wordlist.txt or START] [-t [FIXED]@@@@] [-s startblock]
* -t [FIXED]@,%^ : allows you to specify a pattern, eg: @@god@@@@
* where the only the @'s will change with lowercase letters
* the ,'s will change with uppercase letters
* the %'s will change with numbers
* the ^'s will change with symbols
crunch 9 9 -t gm10086^^ > wd.txt
crunch 8 8 -t gm10086^ >> wd.txt
crunch 7 7 -t gm%%%%% >> wd.txt