git clone --depth=1 https://github.com/ImJoke/nmap-initial-scan
python initial.py 192.168.0.1 -spython initial.py 192.168.0.1 -s -v -Pn -p0 --min-rate 5000python initial.py 192.168.0.1 -s -vvv --min-rate 5000Let's assume our gateway is 192.168.0.1 and we want to scan 192.168.0.100 but too lazy to write 192.168.0.x then we can just do
python initial.py 100If you want to get the details you can simply put -s
python initial.py 100 -s$ python initial.py -h
usage: usage: initial.py [-h] [-p <1-65535>] [-T<0-5>] [-v] [-s] [-Pn] [--min-rate <number>] IP
Modern initial scan with nmap
positional arguments:
IP Target IP address
options:
-h, --help show this help message and exit
-p, --port Port to scan (`-p 0` equal to `-p-`)
-T<0-5> Set timing template (higher is faster)
-v, --verbose Verbose
-s, --status Get status information for debugging
-Pn Treat all hosts as online -- skip host discovery
--min-rate Send packets no slower than <number> per second
-o, --output Output path- Python ≥ 3.x.x
- Support for domain