Vxscan 是一个 Python 3 编写的综合扫描工具,主要用来敏感文件探测(目录扫描与js泄露接口),WAF/CDN识别,端口扫描,指纹/服务识别,操作系统识别,弱口令探测,POC扫描,SQL注入,绕过CDN,查询旁站等功能,主要用来甲方自测或乙方授权测试,请勿用来搞破坏。
以下是AWVS扫描器测试网站结果
python3 Vxscan.py -h
optional arguments: -h, --help show this help message and exit -u URL, --url URL Start scanning this url -u xxx.com -i INET, --inet INET cidr eg. 1.1.1.1 or 1.1.1.0/24 -f FILE, --file FILE read the url from the file -t THREADS, --threads THREADS Set scan thread, default 150 -e EXT, --ext EXT Set scan suffix, -e php,asp -w WORD, --word WORD Read the dict from the file
1. 扫描一个网站 python3 vxscan.py -u http://www.xxx.com/ 2. 从文件列表里扫描网站 python3 vxscan.py -f hosts.txt 3. 扫描一个C段 python3 vxscan.py -i 127.0.0.0/24 4. 设置线程100,组合只用php后缀,使用自定义字典 python3 vxscan.py -u http://www.xxx.com -e php -t 100 -w ../dict.txt
python3 vxscan.py -u http://www.xxx.com/
python3 vxscan.py -f hosts.txt
python3 vxscan.py -i 127.0.0.0/24
python3 vxscan.py -u http://www.xxx.com -e php -t 100 -w ../dict.txt