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
#!/bin/sh | |
# Typical invocation would be: | |
# masscan_bin2list masscan.bin | parallel | |
# | |
# Example output from masscan_bin2list: | |
# nmap -sV -Pn -vv -n -p 443,80 -oA 10.0.0.1_V 10.0.0.1 | |
# nmap -sV -Pn -vv -n -p 135,139,445 -oA 10.0.0.2_V 10.0.0.2 | |
masscan --readscan $1 -oL - | \ |
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/python3 | |
import serial, time, sys, threading | |
from colorama import Fore, Style, init as colorama_init | |
colorama_init() | |
# lock to serialize console output | |
lock = threading.Lock() |
NewerOlder