-
-
Save teocci/578b067238352a91b7454bfc1f9620a5 to your computer and use it in GitHub Desktop.
udp端口扫描(python-nmap代码)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#! /usr/bin/python | |
import nmap | |
# python-nmap url : http://xael.org/norman/python/python-nmap/python-nmap-0.1.4.tar.gz | |
nm = nmap.PortScanner() | |
nm.scan(hosts='192.168.1.0/24', arguments='-n -p 161 -sU ') | |
hosts_list = [(x, nm[x][u'udp'][161]['state']) for x in nm.all_hosts()] | |
#print nm.all_hosts() | |
#print nm[u'192.168.1.100'][u'udp'][161]['state'] | |
for host, status in hosts_list: | |
print('{0}:{1}'.format(host, status)) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment