1 Star 0 Fork 45

北冥有鱼在飞/qytang_Python

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
2016.03.02 python nmap ping and A scan 338 Bytes
一键复制 编辑 原始数据 按行查看 历史
现任明教教主-乾颐堂 提交于 2016-03-02 08:20 . new file
#!/usr/bin/python3.4
# -*- coding=utf-8 -*-
import nmap
import sys
from nmap_ping_scan import nmap_ping_scan
from nmap_A_scan import nmap_A_scan
def nmap_ping_A_scan(network_prefix):
hosts = nmap_ping_scan(network_prefix)
for host in hosts:
nmap_A_scan(host)
if __name__ == '__main__':
nmap_ping_A_scan(sys.argv[1])
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/grant5/qytang_Python.git
git@gitee.com:grant5/qytang_Python.git
grant5
qytang_Python
qytang_Python
master

搜索帮助