使用python-nmap模块扫描端口脚本
2021-07-09 11:04
标签:脚本 pip .com com help close 方法 pytho this 端口扫描 项目地址:https://github.com/sgjr/portScan 使用前需要安装nmap命令以及python-nmap模块 1.python portScan.py -H 127.0.0.1 -p 3306 2.python portScan.py -H 127.0.0.1 -p 3306-3308 3.python portScan.py -H 127.0.0.1 -p 3306,3309 4.python portScan.py -H 127.0.0.1-2 -p 3306-3308 使用python-nmap模块扫描端口脚本 标签:脚本 pip .com com help close 方法 pytho this 原文地址:http://blog.51cto.com/13544424/2167835使用须知
yum install nmap
pip 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
使用示例
----- 127.0.0.1 -----
127.0.0.1 tcp/3306 open
----- 127.0.0.1 -----
127.0.0.1 tcp/3306 open
127.0.0.1 tcp/3307 open
127.0.0.1 tcp/3308 closed
----- 127.0.0.1 -----
127.0.0.1 tcp/3306 open
127.0.0.1 tcp/3309 closed
----- 127.0.0.1 -----
127.0.0.1 tcp/3306 open
127.0.0.1 tcp/3307 open
127.0.0.1 tcp/3308 closed
----- 127.0.0.2 -----
127.0.0.2 tcp/3306 open
127.0.0.2 tcp/3307 open
127.0.0.2 tcp/3308 closed
文章标题:使用python-nmap模块扫描端口脚本
文章链接:http://soscw.com/index.php/essay/102743.html