Automate Recon and scanning process with Vidoc. All security teams in one place
By kannthu
The "Apache2 Ubuntu Default Page" module is designed to detect the presence of the default Apache2 web page on an Ubuntu server. This module targets the Apache web server software and aims to identify misconfigurations or vulnerabilities related to the default page.
Severity: Informative
Author: dhiyaneshDk
The impact of this module is primarily informational. It helps identify whether the Apache2 Ubuntu Default Page is present on a server, which can provide insights into the server's configuration and potential vulnerabilities.
The module works by sending an HTTP request to the target server and analyzing the response. It specifically looks for the presence of the "<title>Apache2 Ubuntu Default Page: It works</title>
" tag in the body of the response.
If the response contains this tag, it indicates that the default Apache2 Ubuntu page is being served by the server. The module then reports this as a match, indicating the presence of the default page.
Matching Conditions:
- The module checks the body of the HTTP response for the presence of the "<title>Apache2 Ubuntu Default Page: It works</title>
" tag.
Example HTTP Request:
GET / HTTP/1.1
Host: example.com
User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/58.0.3029.110 Safari/537.3
Note: The above example is a simplified representation of an HTTP request and may not include all headers or parameters.