آموزش‌ها

🆓 Free professional penetration testing & cybersecurity tools — detailed guide for each tool

🗺️ Nmap — Network Scanner

Nmap (Network Mapper) is the most powerful free tool for network scanning, port discovery, and service enumeration used by pentesters worldwide.

📦 Installation

sudo apt update && sudo apt install nmap

⚡ Essential Commands

  • nmap 192.168.1.1 — Scan single IP
  • nmap -sV 192.168.1.1 — Detect service versions
  • nmap -sS -O 192.168.1.1 — Stealth scan + OS detection
  • nmap -A -T4 192.168.1.0/24 — Aggressive full network scan
  • nmap -p 1-65535 192.168.1.1 — Scan all ports
  • nmap --script vuln 192.168.1.1 — Scan for known vulnerabilities
  • nmap -sU -p 53,67,161 192.168.1.1 — UDP scan
  • nmap -oN output.txt 192.168.1.1 — Save results to file

💡 Pro Tips

• Use -T4 for fast scanning and -T1 for slow stealthy scan.
• NSE (Nmap Scripting Engine) offers 600+ ready scripts.
--script http-title to grab web page titles on the network.

سلب مسئولیت ⚖️

فقط برای اهداف آموزشی. مسئولیت با کاربر است.