nuclei-templates/default-logins/rabbitmq/rabbitmq-default-login.yaml

37 lines
732 B
YAML
Raw Normal View History

2021-09-21 11:46:53 +00:00
id: rabbitmq-default-login
info:
2021-09-22 10:37:07 +00:00
name: RabbitMQ admin Default Login
2021-06-09 12:20:56 +00:00
author: fyoorer,dwisiswant0
2020-08-31 18:34:29 +00:00
severity: high
2021-04-06 08:15:46 +00:00
tags: rabbitmq,default-login
requests:
- raw:
- |
GET /api/whoami HTTP/1.1
2021-10-10 01:21:50 +00:00
Host: {{Hostname}}
Content-Type: application/x-www-form-urlencoded
Authorization: Basic {{base64(username + ':' + password)}}
payloads:
username:
- guest
password:
- guest
attack: pitchfork
matchers-condition: and
matchers:
- type: word
words:
- "application/json"
part: header
2020-07-08 17:34:45 +00:00
- type: word
words:
- "{\"name\":\"guest\""
2020-07-08 16:50:39 +00:00
part: body
- type: status
status:
2020-07-08 17:34:45 +00:00
- 200