Automate Recon and scanning process with Vidoc. All security teams in one place
By kannthu
The "Command API Explorer Panel - Detect" module is designed to detect the presence of the Command API Explorer panel. This panel allows users to explore and interact with the Command API. The module targets websites that have the Command API Explorer panel enabled.
This module is classified as informative, meaning it provides information about the presence of the panel but does not indicate any specific vulnerabilities or misconfigurations.
Author: DhiyaneshDK
The module does not have any direct impact on the target website. It simply detects the presence of the Command API Explorer panel, providing information to the user.
The module works by sending an HTTP GET request to the "/explorer.html" path of the target website. It then applies a series of matching conditions to determine if the Command API Explorer panel is present.
The matching conditions include:
- The response body must contain the HTML title tag "<title>Command API Explorer</title>
".
- The response headers must include the "Content-Type" header with the value "text/html".
- The response status code must be 200 (OK).
If all of these conditions are met, the module reports that the Command API Explorer panel is detected.
Example HTTP request:
GET /explorer.html
Note: The above example is a simplified representation of the HTTP request. The actual module may include additional headers or parameters.