I am using nmap in python, and trying to scan the network using a text file. All the scan ranges are in a text file, like so:
192.168.1.1-100 192.168.1.120-200 ...
Though, lets say if the scan did not find host 192.168.1.3, because it was offline. The program will crash. Is there a way that I can get around this crashing? Can I use something like Try / Catch?
counter = 0
with open('range.txt') as rangefile:
content = rangefile.readlines()
while counter < len(content):
nm = nmap.PortScanner()
#define the nmap scan here
nm.scan(content[counter], '517', '-sU -sT')
This is the sample of code
File "c:\...\nmapscan.py", line 63, in <module> therehost = Host.objects.get(ipv4_address=hosts) va.assessment.models.DoesNotExist: Host matching query does not exist. Lookup parameters were {'ipv4_address': u'134.250.16.103'}
This is the error
nmap
takes two arguments for exclusion.--exclude
takes host name(s) and--excludefile
takes a file containing name of hosts that need to be excluded. Use one of these as your need. For more on setting target see the man page.Here is my test result -
You can use try-catch-
As you don't which servers are down, you can ping the server before you proceed to nmap scan.