Introduction
In this challenge, you'll learn how to identify the version of a locally running web server using Nmap. A simple HTTP server is set up using Python on port 8080, but its version is unknown. Your task is to use Nmap with version detection enabled to determine the server's software and version.
To accomplish this, you'll need to execute the nmap
command with the -sV
option targeting localhost
on port 8080
from the ~/project
directory. The expected output should reveal the web server software and its version, such as "Python SimpleHTTPServer 0.6". Successful completion involves accurately identifying the server version using Nmap's version detection capabilities.