比较详细的实操栗子
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 uwpscan –-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.tgztar xf crunch-3.6.tgzcd crunch-3.6gcc -Wall -lm -pthread -std=c99 -m64 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 crunch.c -o crunch -lmmake 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 symbolscrunch 9 9 -t gm10086^^ > wd.txtcrunch 8 8 -t gm10086^ >> wd.txtcrunch 7 7 -t gm%%%%% >> wd.txt
