NMAP
Last updated
Last updated
Even though this is a web penetration test, I will go ahead and check nmap anyways to see what pops up. If anything for good practice.
Start with basic nmap scan:
nmap 10.10.72.153
Looks like the following ports are open:
22
80
Will check for all open ports
Next run an nmap scan on all ports to see what is open:
nmap -p- 10.10.72.153
Nothing new.
Run a more detailed scan to see what pops up:
nmap -sC -sV -p 80,22 10.10.72.153