Ethical Hacking Automation

Automate Recon and scanning process with Vidoc. All security teams in one place

eZ Publish Login Panel - Detect

By kannthu

Informative
Vidoc logoVidoc Module
#panel#ez
Description

What is the "eZ Publish Login Panel - Detect" module?

The "eZ Publish Login Panel - Detect" module is a test case designed to detect the presence of the eZ Publish login panel. eZ Publish is a content management system (CMS) that allows users to create and manage digital content. This module focuses on identifying the login panel specifically.

The severity of this module is classified as informative, meaning it provides information rather than indicating a vulnerability or misconfiguration.

This module was authored by ritikchaddha.

Impact

The impact of this module is limited to providing information about the presence of the eZ Publish login panel. It does not indicate any vulnerabilities or misconfigurations.

How does the module work?

The "eZ Publish Login Panel - Detect" module works by using matching conditions to identify the presence of the eZ Publish login panel. It uses two matchers:

- Matcher 1: It searches for the phrase "content="eZ Publish" in the body of the HTTP response. This condition is case-insensitive. - Matcher 2: It searches for the phrase "eZ Publish" in the header of the HTTP response.

If either of these matchers finds a match, the module considers the eZ Publish login panel to be present.

While the module does not send any HTTP requests itself, it analyzes the responses received during scanning to determine the presence of the login panel.

Here is an example of an HTTP response that would match the conditions:

HTTP/1.1 200 OK
Content-Type: text/html; charset=UTF-8
Content-Length: 1234

<html>
<head>
  <title>Welcome to eZ Publish</title>
</head>
<body>
  <h1>Login Panel</h1>
  <!-- Other HTML content -->
</body>
</html>

In this example, the response body contains the phrase "eZ Publish" in the content attribute, and the response header also includes the phrase "eZ Publish". Therefore, the module would detect the presence of the eZ Publish login panel.

Module preview

Concurrent Requests (0)
Passive global matcher
word: content="eZ Publishor
word: eZ Publish
On match action
Report vulnerability