Dirsearch是一个快速而强大的目录搜索工具。Dirsearch是一个用于在web服务器上遍历目录的多功能工具。使用Python编写,支持多线程,自定义请求以及与各种字典的配合。
安装方法:
- 确保安装了Python 3:
sudo apt install python3
- 下载镜像 :
git clone https://github.com/maurosoria/dirsearch.git
cd dirsearch
- 安装依赖项:
pip3 install -r requirements.txt
4.使用用法:
4.1. 运行的主要命令:
python3 dirsearch.py -u http://example.com -e php,html -w wordlist.txt
-u — 目标URL。
-e — 文件扩展名(例如,php,html,js)。
-w — 字典文件的路径。
4.2. 其他有用的选项:
-t — 线程数(默认为10)。
–timeout — 服务器响应超时时间。
-r — 在连接失败时重试。
4.3示例用法:
python3 dirsearch.py -u http://testsite.com -e js,css -t 20 -o results.txt
其他功能请自行测试。