Github
快速使用
扫描指定主机和端口
rustscan -a 10.0.0.1 -p 80,443
扫描多个主机
rustscan -a 10.0.0.1/16,192.168.0.1/24 -p 80,443
扫描范围端口
rustscan -a 10.0.0.1 --range 1-1000 8080,8443
使用nmap参数
rustscan -a 10.0.0.1 -p 80,443 -- -A -sC
其它使用
指定超时时间和端口扫描并发数,默认1500和4500
rustscan -a 10.0.0.1 -t 1500 -b 4500 -p 80,443
随机端口扫描
rustscan -a 127.0.0.1 --range 1-1000 --scan-order "Random" 8080,8443
安静模式
rustscan -a 127.0.0.1 -q --range 1-10000
输出到文件,使用namp参数
rustscan -a 10.0.0.1 -p 80,443 -oN test.txt