標籤:指令碼 pip .com com help close 方法 pytho this
portScan
連接埠掃描
項目地址:https://github.com/sgjr/portScan
使用須知
使用前需要安裝nmap命令以及python-nmap模組
yum install nmappip install python-nmap
使用方法
Usage: portScan.py [Options]Options: --version show program‘s version number and exit -h, --help show this help message and exit -H SCANHOST, --host=SCANHOST The hosts will be scan -p SCANPORT, --port=SCANPORT The ports will be scan
使用樣本
1.python portScan.py -H 127.0.0.1 -p 3306
----- 127.0.0.1 -----127.0.0.1 tcp/3306 open
2.python portScan.py -H 127.0.0.1 -p 3306-3308
----- 127.0.0.1 -----127.0.0.1 tcp/3306 open127.0.0.1 tcp/3307 open127.0.0.1 tcp/3308 closed
3.python portScan.py -H 127.0.0.1 -p 3306,3309
----- 127.0.0.1 -----127.0.0.1 tcp/3306 open127.0.0.1 tcp/3309 closed
4.python portScan.py -H 127.0.0.1-2 -p 3306-3308
----- 127.0.0.1 -----127.0.0.1 tcp/3306 open127.0.0.1 tcp/3307 open127.0.0.1 tcp/3308 closed ----- 127.0.0.2 -----127.0.0.2 tcp/3306 open127.0.0.2 tcp/3307 open127.0.0.2 tcp/3308 closed
使用python-nmap模組掃描連接埠指令碼