Active

circle-info

Keep in mind while trying to figure out active hosts in a network, there are multiple tools, commands and techniques. The most important comment is to not be noisy and do things as mostly stealthy as you can.

tcpdump:

- tcpdump -i eth0
- tcpdump -c -i eth0
- tcpdump -A -i eth0
- tcpdump -w 0001.pcap -i eth0
- tcpdump -r 0001.pcap
- tcpdump -n -i eth0
- tcpdump -i eth0 port 22
- tcpdump -i eth0 -src 172.21.10.X
- tcpdump -i eth0 -dst 172.21.10.X

Other tools:

  • Tshark (Command Line Wireshark)

  • Wireshark

Network Scanning

NetDiscover (ARP Scanning):

netdiscover -i eth0
netdiscover -r 172.21.10.0/24

Nmap:

Nbtscan:

Linux Ping Sweep (Bash)

Windows Ping Sweep (Run on Windows System)

Host Scanning

Nmap:

Nmap Stealth:

UDP Scan:

IPv6 Scan:

Scans through Socks proxy:

DNSRecon

Dig

Sublis3r

OWASP AMASS

Last updated