|
|
|
@ -2,6 +2,7 @@ import nmap
|
|
|
|
|
import masscan
|
|
|
|
|
from threading import Thread
|
|
|
|
|
from datetime import datetime
|
|
|
|
|
from pprint import pprint
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class AnmapThread(Thread):
|
|
|
|
@ -20,10 +21,12 @@ class ThoroughAnmapThread(AnmapThread):
|
|
|
|
|
log("Starting thorough scan on " + self.host, self.verbose)
|
|
|
|
|
self.scanner.scan(self.host, "1," + ",".join(self.ports),
|
|
|
|
|
arguments='-sSVC -A -Pn{}'.format(output(self.out, self.host, 2)))
|
|
|
|
|
log(self.scanner.command_line(), self.verbose)
|
|
|
|
|
if self.out:
|
|
|
|
|
with open(output(True, self.host, 5), "w") as outfile:
|
|
|
|
|
outfile.write(self.scanner.get_nmap_last_output())
|
|
|
|
|
host = self.scanner[self.host]
|
|
|
|
|
log("{}/{} is {}".format(host.hostname(), host["addresses"]["ipv4"], host["osmatch"][0]["name"]), self.verbose)
|
|
|
|
|
for p in host.all_tcp():
|
|
|
|
|
if p == 1:
|
|
|
|
|
continue
|
|
|
|
@ -36,10 +39,12 @@ class UDPAnmapThread(AnmapThread):
|
|
|
|
|
log("Starting UDP scan on " + self.host, self.verbose)
|
|
|
|
|
self.scanner.scan(self.host, arguments='-sVCU -A -Pn --top-ports {}{}'.
|
|
|
|
|
format(self.ports, output(self.out, self.host, 3)))
|
|
|
|
|
log(self.scanner.command_line(), self.verbose)
|
|
|
|
|
if self.out:
|
|
|
|
|
with open(output(True, self.host, 6), "w") as outfile:
|
|
|
|
|
outfile.write(self.scanner.get_nmap_last_output())
|
|
|
|
|
host = self.scanner[self.host]
|
|
|
|
|
log("{}/{} is {}".format(host.hostname(), host["addresses"]["ipv4"], host["osmatch"][0]["name"]), self.verbose)
|
|
|
|
|
for p in host.all_udp():
|
|
|
|
|
log("Port {}/udp: {}".format(p, host['udp'][p]), self.verbose)
|
|
|
|
|
log("Finished UDP scan on " + self.host, self.verbose)
|
|
|
|
@ -53,10 +58,12 @@ class BaseAnmapThread(AnmapThread):
|
|
|
|
|
def run(self):
|
|
|
|
|
log("Starting quick scan", self.verbose)
|
|
|
|
|
self.scanner.scan(self.host, arguments='-sS -Pn -p{}{}'.format(self.ports, output(self.out, self.host, 1)))
|
|
|
|
|
log(self.scanner.command_line(), self.verbose)
|
|
|
|
|
if self.out:
|
|
|
|
|
with open(output(True, self.host, 4), "w") as outfile:
|
|
|
|
|
outfile.write(self.scanner.get_nmap_last_output())
|
|
|
|
|
log("Finished quick scan", self.verbose)
|
|
|
|
|
np = 0
|
|
|
|
|
for hostname in self.scanner.all_hosts():
|
|
|
|
|
host = self.scanner[hostname]
|
|
|
|
|
port_list = list()
|
|
|
|
@ -65,6 +72,8 @@ class BaseAnmapThread(AnmapThread):
|
|
|
|
|
port_list.append(str(p))
|
|
|
|
|
if port_list is not list():
|
|
|
|
|
self.host_dict[hostname] = port_list
|
|
|
|
|
np += len(port_list)
|
|
|
|
|
log("Found {} open ports on {} host(s) with {}".format(np, len(self.host_dict), "nmap"), self.verbose)
|
|
|
|
|
|
|
|
|
|
def rjoin(self):
|
|
|
|
|
Thread.join(self)
|
|
|
|
@ -79,8 +88,10 @@ class MasscanAnmapThread(BaseAnmapThread):
|
|
|
|
|
|
|
|
|
|
def run(self):
|
|
|
|
|
log("Starting masscan scan", self.verbose)
|
|
|
|
|
self.scanner.scan(self.host, arguments='-p{}{}'.format(self.ports, output(self.out, self.host, 7)))
|
|
|
|
|
self.scanner.scan(self.host, ports=self.ports, arguments=output(self.out, self.host, 7), sudo=True)
|
|
|
|
|
log(self.scanner.command_line(), self.verbose)
|
|
|
|
|
log("Finished quick scan", self.verbose)
|
|
|
|
|
np = 0
|
|
|
|
|
for hostname in self.scanner.all_hosts():
|
|
|
|
|
host = self.scanner[hostname]
|
|
|
|
|
port_list = list()
|
|
|
|
@ -89,6 +100,8 @@ class MasscanAnmapThread(BaseAnmapThread):
|
|
|
|
|
port_list.append(str(p))
|
|
|
|
|
if port_list is not list():
|
|
|
|
|
self.host_dict[hostname] = port_list
|
|
|
|
|
np += len(port_list)
|
|
|
|
|
log("Found {} open ports on {} host(s) with {}".format(np, len(self.host_dict), "masscan"), self.verbose)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def output(o, host, st):
|
|
|
|
@ -113,8 +126,7 @@ def output(o, host, st):
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def log(message, verbose):
|
|
|
|
|
if verbose:
|
|
|
|
|
print("{}: {}".format(date(True), message))
|
|
|
|
|
if verbose: print("{}: {}".format(date(True), message))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def date(long=False):
|
|
|
|
|