Automate Recon and scanning process with Vidoc. All security teams in one place
By kannthu
The "Web File Manager Login Panel - Detect" module is designed to detect the presence of a login panel for a web file manager. It targets a specific software and checks for the existence of the login panel through HTTP requests. The severity of this module is classified as informative, meaning it provides information rather than identifying a vulnerability or misconfiguration. The original author of this module is DhiyaneshDK.
This module does not have a direct impact on the target system. It simply detects the presence of a web file manager login panel, providing information about its existence.
The module works by sending an HTTP GET request to the "/Login" path of the target system. It then applies matching conditions to determine if the response indicates the presence of a web file manager login panel.
The matching conditions for this module are as follows:
- The response body must contain the words "Web File Manager" and "Login". - The response status code must be 200 (OK).If both conditions are met, the module considers the login panel to be detected.
Here is an example of the HTTP request sent by the module:
GET /Login
Please note that this is a simplified example and the actual HTTP request may contain additional headers or parameters.