Introduction :
Nmap is the industry-standard tool for network discovery and security auditing. In this project, I performed active reconnaissance on an authorized test server using Namp in Termux Kali Linux on Android.
The goal was to identify open and close ports, detect running services, and understand How Blue Teams use Nmap to reduce attack surface.
1. sudo apt update
2. sudo apt install map -y
1. nmap -sT --unprivileged -v --top-ports 10 scanme.nmap.org
2. nmap -sT --unprivileged -sV -p 22,80 scanme.nmap.org
3. nmap -sT --unprivileged -F scanme.nmap.org
All scans were performed exclusively on scanme.nmap.org, a server explicitly provided by Nmap project for testing purposes.
Unauthorized scaning of networks or systems is illegal under the IT Act, 2000. This project is for educational and portfolio demonstration only.