Recon

NMAP

  • Start with nmap scan:

nmap [Target IP]
  • Pings are being blocked so I will need to run nmap with the -Pn flag.

nmap -Pn [Target IP]
  • I checked all ports to see what was open but got nothing except port 8080.

  • Next is to run a version and script scan of the system.

nmap -Pn -A -p 8080 [Target IP]

Findings:

  • Port 8080 is running Apache-Coyote/1.1 or Apache Tomcat which is a web server.

  • The version is Apache Tomcat/Coyote JSP engine 1.1

  • No other services are available.

Last updated