This task focused on gathering information about a target network using basic reconnaissance tools in Kali Linux.
- Nmap β For port scanning, service detection, OS fingerprinting
- Netdiscover β For discovering live hosts in the local network
- Started Kali Linux and opened the Terminal.
- Used Netdiscover to find active devices on the local network.
- Identified IP addresses, MAC addresses, and vendors.
- Selected a target machine IP from the Netdiscover output.
- Performed an Nmap scan:
- Basic scan (
nmap <IP>) - Service/version detection (
nmap -sV <IP>) - OS detection (
nmap -O <IP>) - Full port scan (
nmap -p- <IP>)
- Basic scan (
- Saved the results and prepared screenshots for documentation.
- Screenshots of Netdiscover output
- Screenshots of Nmap scan
- Summary text file of findings
This task helped me understand how reconnaissance works in cybersecurity.
I successfully identified:
- Active hosts in the network
- Open ports
- Services running on the target machine
- Possible OS information
This forms the foundation for penetration testing and further vulnerability scanning.