WebAliveScan根据端口快速扫描
安装
pip3 install -r requirements.txt -i
https://mirrors.aliyun.com/pypi/simple/
使用帮助:
python3 webscan.py --target target.txt --port 80
python3 webscan.py --target target.txt --port large
v1.1增加忽略指定HTTP状态
config.py
# 可以指定需要忽略HTTP状态码
ignore_status_code = [400]
# 指定线程数量
threads = 1024
v1.2增加最小目标自定义端口
python3 webscan.py --target target.txt --port 80
target.txt
# 扫描--port指定的80
www.google.com
# 扫描www.baidu.com的443
www.baidu.com:443
文章来源:
https://github.com/broken5/WebAliveScan