Automate Recon and scanning process with Vidoc. All security teams in one place
By kannthu
The "IBM Advanced System Management Panel - Detect" module is designed to detect the presence of the IBM Advanced System Management panel. This module focuses on identifying the panel's existence and does not perform any vulnerability or misconfiguration checks. The severity of this module is classified as informative, meaning it provides valuable information but does not indicate any immediate security risks. The original author of this module is dhiyaneshDK.
This module does not have any direct impact on the target system. It solely aims to identify the presence of the IBM Advanced System Management panel.
The module works by sending an HTTP GET request to the target system's "/cgi-bin/cgi" path. It then applies two matching conditions to determine if the IBM Advanced System Management panel is present:
- The module checks if the response body contains the HTML title tag "<title>Advanced System Management</title>
".
- The module verifies if the response status code is 200 (OK).
If both conditions are met, the module reports the detection of the IBM Advanced System Management panel.
Example HTTP request:
GET /cgi-bin/cgi HTTP/1.1
Host: [target host]
Note: Replace "[target host]" with the actual hostname or IP address of the target system.