比较详细的实操栗子
    https://www.freebuf.com/column/228732.html

    WPScan
    https://github.com/wpscanteam/wpscan

    1. docker run -it --rm wpscanteam/wpscan --url https://target.tld/ --enumerate u
    2. # 枚举用户
    3. wpscan –-url www.kyweb.net enumerate u
    4. wpscan –-url www.kyweb.net enumerate u1-100
    5. # 指定密码字典
    6. wpscan -–url www.kyweb.net --passwords wd.txt --usernames 用户名
    7. docker run -it -v /home/zcs/tttt:/data:ro --rm wpscanteam/wpscan --url gm10086.cn --passwords /data/wd.txt --usernames gm
    8. # 枚举易攻击插件
    9. wpscan --url 10.11.5.62 -e vp
    10. # 枚举易攻击主题
    11. 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/

    1. # 安装
    2. wget https://sourceforge.net/projects/crunch-wordlist/files/crunch-wordlist/crunch-3.6.tgz
    3. tar xf crunch-3.6.tgz
    4. cd crunch-3.6
    5. gcc -Wall -lm -pthread -std=c99 -m64 -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 crunch.c -o crunch -lm
    6. make install
    1. * usage: ./crunch <min-len> <max-len> [charset]
    2. * e.g: ./crunch 3 7 abcdef
    3. * crunch <from-len> <to-len> [-f <path to charset.lst> charset-name] [-o wordlist.txt or START] [-t [FIXED]@@@@] [-s startblock]
    4. * -t [FIXED]@,%^ : allows you to specify a pattern, eg: @@god@@@@
    5. * where the only the @'s will change with lowercase letters
    6. * the ,'s will change with uppercase letters
    7. * the %'s will change with numbers
    8. * the ^'s will change with symbols
    9. crunch 9 9 -t gm10086^^ > wd.txt
    10. crunch 8 8 -t gm10086^ >> wd.txt
    11. crunch 7 7 -t gm%%%%% >> wd.txt