进入到自己对应目录cd /dE:\dirsearch\dirsearch-master1. 基础扫描单个目标dirsearch -u http://192.168.0.130/ceshi/ -w db/dicc.txt -e php,html说明扫描 example.com使用内置字典查找 .php 和 .html 文件2.递归扫描结果过滤dirsearch -u http://192.168.0.130/ceshi/ -w db/dicc.txt -r -i 200,302 -x 404说明递归扫描仅保留状态码为200/302的结果排除4043. 多目标批量扫描dirsearch -l targets.txt -w db/dicc.txt -o results.csv -f csv说明从 targets.txt 加载多个目标将结果保存为CSV格式4.自定义请求头与代理启动Burp Suitedirsearch -u http://192.168.0.160/award/ -w db/dicc.txt -H Authorization: Bearer token --proxy http://127.0.0.1:8080说明携带认证Token通过本地代理进行扫描
