mirror of
https://github.com/lunchcat/sif.git
synced 2026-07-28 14:37:01 -07:00
31 lines
564 B
YAML
31 lines
564 B
YAML
# RabbitMQ Management Detection Module
|
|
|
|
id: rabbitmq-panel
|
|
info:
|
|
name: RabbitMQ Management
|
|
author: sif
|
|
severity: info
|
|
description: Detects an exposed RabbitMQ management UI login panel
|
|
tags: [rabbitmq, amqp, messaging, panel, login, detection, info]
|
|
|
|
type: http
|
|
|
|
http:
|
|
method: GET
|
|
paths:
|
|
- "{{BaseURL}}"
|
|
- "{{BaseURL}}/rabbitmq/"
|
|
|
|
matchers:
|
|
- type: status
|
|
status:
|
|
- 200
|
|
|
|
- type: word
|
|
part: all
|
|
condition: or
|
|
words:
|
|
- "RabbitMQ Management"
|
|
- "rabbitmqlogo"
|
|
- "<title>RabbitMQ"
|