Automate Recon and scanning process with Vidoc. All security teams in one place
By kannthu
The "Wowza Streaming Engine Manager Panel - Detect" module is designed to detect the presence of the Wowza Streaming Engine Manager panel. Wowza Streaming Engine is a software that enables users to stream audio and video content over the internet. This module focuses on identifying the Manager panel, which is a web-based interface for managing and configuring the Wowza Streaming Engine.
This module has an informative severity level, meaning it provides valuable information but does not indicate any immediate vulnerabilities or misconfigurations.
This module was authored by dhiyaneshDK.
The impact of detecting the Wowza Streaming Engine Manager panel is primarily informational. It helps users identify the presence of the Manager panel, which can be useful for understanding the configuration and management options available for the Wowza Streaming Engine.
The module works by sending an HTTP GET request to the "/enginemanager/ftu/welcome.htm" path of the target server. It then applies two matching conditions to determine if the Wowza Streaming Engine Manager panel is present:
- The first matching condition checks if the response body contains the HTML title tag "". - The second matching condition verifies if the response status code is 200, indicating a successful request.If both matching conditions are met, the module reports the detection of the Wowza Streaming Engine Manager panel.
Example HTTP request:
GET /enginemanager/ftu/welcome.htm
Matching conditions:
- Response body contains the HTML title tag "<title>Wowza Streaming Engine Manager</title>
".
- Response status code is 200.