🛡️ Hacking Tutorial: Using Nmap for Network Scanning
What is Nmap?
Nmap (Network Mapper) is a tool for scanning networks to identify devices, services, and vulnerabilities.
Steps to Scan a Network:
1. Install Nmap:
Linux: sudo apt install nmap
Windows:
Download Nmap2. Basic Scan:
Run: nmap [IP/hostname] to list active devices.
3. Service Detection:
Use: nmap -sV [IP] to find running services.
4. Scan for Vulnerabilities:
Command: nmap --script vuln [IP]
🔒 Tip: Only scan networks you own or have permission to test!