遍历ip开放的端口
Posted hello-Will
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了遍历ip开放的端口相关的知识,希望对你有一定的参考价值。
用于检测服务器上某个ip地址开放的端口,查漏洞等。
#!/bin/bash
# port range to check
for i in 20..25
do
echo now is $i
#check open port and save to file
wget 192.168.1.1:$i --timeout=2 --tries=1 && echo $i >> testok.txt
done
以上是关于遍历ip开放的端口的主要内容,如果未能解决你的问题,请参考以下文章
Ubuntu 16.04开放本地端口给指定IP(或IP段)并持久化