Added template for redpanda-console-detection
parent
c29eb3147e
commit
d83860ad46
|
@ -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
|
Loading…
Reference in New Issue