Skip to content

Instantly share code, notes, and snippets.

@gitxmax
gitxmax / async_tcp_scan.py
Created May 10, 2019 08:30 — 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
MAX_NUMBER_WORKERS = 200