Automate Recon and scanning process with Vidoc. All security teams in one place
By kannthu
The "SequoiaDB Login Panel - Detect" module is designed to detect the presence of the SequoiaDB login panel. SequoiaDB is a software that provides a distributed database management system. This module focuses on identifying the login panel, which can help in assessing the security posture of the system.
This module has an informative severity level, meaning it provides valuable information but does not indicate a vulnerability or misconfiguration.
Author: dhiyaneshDk
This module does not have a direct impact on the system. It is primarily used for detection purposes and does not perform any actions that could cause harm or compromise the system.
The "SequoiaDB Login Panel - Detect" module works by sending an HTTP GET request to the "/login.html#/" path of the target system. It then applies two matching conditions to determine if the login panel is present:
- The module checks if the response body contains the HTML title tag "<title>SequoiaDB</title>
".
- It also verifies if the response header includes the content type "text/html".
If both conditions are met, the module reports a successful detection of the SequoiaDB login panel.
Example HTTP request:
GET /login.html#/ HTTP/1.1
Host: [target_host]
Note: [target_host] should be replaced with the actual hostname or IP address of the target system.