利用nc(netcat)对IP range进行的port scanning
对某个IP的多个端口进行扫描可利用nc(netcat,详见man nc),如:nc -zv host.example.com 80 20 22 或 nc host.example.com 20-30,但如果需要对一个IP range进行扫描呢?nc本身不行,可以用nmap,也可以在shell里面操作:for i in {1..254}; do nc -vz -w 1 192.168.1.$i 22; done 扫描的是192.168.1.0这个IP段的22端口
Labels: Coding, Linux, networks, Operation and Maintenance
0 Comments:
Post a Comment
Subscribe to Post Comments [Atom]
<< Home