Host Discovery π
When we have our pool of IP addresses, we have to identify the devices and the roles played by each IP in the target organization.
Live Hosts
ICMP Ping Sweep
fping -a -g [IP-Range]/[Mask]
nmap -sn [IP-Range]/[Mask] -oG ping-sweep.nmap
grep "Up" ping-sweep.nmap | cut -d " " -f 2#!/bin/bash
for i in $(seq 1 255); do
timeout 1 bash -c "ping -c 1 10.10.10.$i" > /dev/null && echo "10.10.10.$i - Active" &
done; waitMost common ports
Last updated