Banner Grabbing
Last updated
nc 10.10.182.147
GET / HTTP/1.1
host: netcat# Terminal 1: capture traffic between you and target
sudo tcpdump -i eth0 host 10.10.14.2 and 10.129.2.28
# Terminal 2: connect to the service
nc -nv 10.129.2.28 25GET / HTTP/1.0
host: netcatopenssl s_client -connect domain.com:443
GET / HTTP/1.0# HTTP headers only (no body)
curl -I http://TARGET
curl -I https://TARGET
# Follow redirects
curl -IL http://TARGET