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
| import argparse | |
| from pathlib import Path | |
| import sys | |
| from libnmap.parser import NmapParser, NmapParserException | |
| from libnmap.process import NmapProcess | |
| from collections import defaultdict | |
| from time import sleep | |
| parser = argparse.ArgumentParser( | |
| description='Import masscan results and run an nmap scan against the target.') |