作者:魔蝎陈小琳 | 来源:互联网 | 2023-10-10 10:43
FileSensorFileSensor是一个基于爬虫的动态敏感文件探测工具,需要Python3.x和pip。包含功能:根据爬虫结果生成fuzz模糊测试向量(input)http:
FileSensor
FileSensor是一个基于爬虫的动态敏感文件探测工具,需要Python 3.x和pip。
包含功能:
- 根据爬虫结果生成fuzz模糊测试向量
(input)http://localhost/ -> (crawl)http://localhost/test.php -> (detect)http://localhost/.test.php.swp
- Scrapy框架
稳定的爬虫程序和可自定义的HTTP请求。 - 自定义404过滤器
使用正则表达式过滤掉用户定义的404页面(状态代码为200)。
FileSensor安装
|
git clone https://github.com/Xyntax/FileSensor cd FileSensor pip3 install -r requirement.txt |
FileSensor使用
|
Usage: filesensor.py URL [--404 REGEX] [-o] filesensor.py (-h | --help) Example: python3 filesensor.py https://www.site.com --404 "404 File not Found!" Options: -o save results in ./output folder --404 REGEX filter out custom 404 page with regex -h --help show this help message |