Complete guide to scanning and enumeration — techniques, tools, evasion, and countermeasures.
Scanning → Identifying live hosts, open ports, and services.
Enumeration → Extracting detailed info (users, shares, services, banners).
📚 Nmap Tools Guide
A Complete Network scanning guide about one of the Best Network scanner Tools — Nmap with Practical experience
🛒 Buy Now on AmazonPing Sweep — Checks which IPs respond to ICMP
nmap -sn 192.168.1.0/24
ARP Scanning — Local network, bypasses firewalls
arp-scan -l
| Scan Type | Description | Command |
|---|---|---|
| TCP Connect Scan | Completes full 3-way handshake (noisy) | nmap -sT 192.168.1.1 |
| SYN Stealth Scan | Half-open scan (stealthier) | nmap -sS 192.168.1.1 |
| UDP Scan | Checks UDP services (slow but critical) | nmap -sU 192.168.1.1 |
| ACK Scan | Bypasses stateless firewalls | nmap -sA 192.168.1.1 |
Banner Grabbing — Identifies service versions
nc -nv 192.168.1.1 80
OS Fingerprinting — Detects OS via TCP/IP stack
nmap -O 192.168.1.1
Nmap NSE Scripts — Automated exploit checks
nmap --script vuln 192.168.1.1
nmblookup -A 192.168.1.1
nbtscan 192.168.1.0/24
snmpwalk -c public -v1 192.168.1.1
ldapsearch -x -h 192.168.1.1 -b "dc=example,dc=com"
smbclient -L //192.168.1.1
enum4linux -a 192.168.1.1
dnsrecon -d example.com
-f in Nmapnmap -D RND:10 192.168.1.1
-T0 slow, -T5 aggressiveproxychains nmap -sT 192.168.1.1
nmap -sS -p 1-1000 -A 192.168.1.1
enum4linux -a 192.168.1.1
nmap --script vuln 192.168.1.1
✔ Disable unnecessary services
✔ Use strong firewall rules (block ICMP, restrict port scans)
✔ Patch systems & disable legacy protocols (SMBv1, SNMPv1)
✔ Monitor logs for scanning activity
📚 Nmap Tools Guide
A Complete Network scanning guide about one of the Best Network scanner Tools — Nmap with Practical experience
🛒 Buy Now on Amazon| Tool | Purpose |
|---|---|
| Nmap | Network scanning, OS detection |
| Netcat | Banner grabbing, manual port checks |
| enum4linux | SMB/NetBIOS enumeration |
| snmpwalk | SNMP data extraction |
| Nessus | Automated vulnerability scanning |
💡 Need deeper dives on any tool (e.g., Nmap scripting, Metasploit integration)? Let me know!