From d83860ad4652bd6853d607162439598d50bf5bc8 Mon Sep 17 00:00:00 2001 From: kh4sh3i Date: Thu, 1 Jan 1970 00:00:00 +0000 Subject: [PATCH] Added template for redpanda-console-detection --- redpanda-console-detection.yaml | 37 +++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 redpanda-console-detection.yaml diff --git a/redpanda-console-detection.yaml b/redpanda-console-detection.yaml new file mode 100644 index 0000000000..3159f6f99c --- /dev/null +++ b/redpanda-console-detection.yaml @@ -0,0 +1,37 @@ +id: redpanda-console-detection + +info: + name: Redpanda Console Detection + author: kh4sh3i + severity: info + description: | + Detects Redpanda Console, a UI for managing data streaming with Redpanda. + reference: + - https://github.com/redpanda-data/console + tags: redpanda, console, streaming, panel + +requests: + - method: GET + path: + - "{{BaseURL}}/" # Target the base URL or specific common endpoint + + matchers-condition: or + matchers: + - type: word + words: + - "Redpanda Console" # Check for text that indicates Redpanda Console in the page body + part: body + + - type: word + words: + - "Redpanda-Console" # Custom headers or cookies specific to Redpanda Console + part: header + + - type: status + status: + - 200 + + - type: word + words: + - "/static/js/main" # Detect the presence of static files used by the UI + part: body