Skip to content

Instantly share code, notes, and snippets.

@emillynge
emillynge / async_tcp_scan.py
Created December 13, 2018 07:26 — forked from 0xpizza/async_tcp_scan.py
TCP Network scanner using asyncio for Python 3.7
#!/usr/bin/python3.7
import asyncio
import ipaddress
import re
import sys
from typing import Generator, NamedTuple, Tuple, Any
# pip dependencies
from aiostream.stream import merge