2025-06-25 15:12:42 -07:00
|
|
|
rules:
|
|
|
|
|
- name: Mandrill API Key
|
|
|
|
|
id: kingfisher.mandrill.1
|
|
|
|
|
pattern: |
|
2025-06-26 11:31:41 -07:00
|
|
|
(?xi)
|
2025-06-25 15:12:42 -07:00
|
|
|
\b
|
|
|
|
|
mandrill
|
|
|
|
|
(?:.|[\n\r]){0,32}?
|
|
|
|
|
(?:SECRET|PRIVATE|ACCESS|KEY|TOKEN)
|
|
|
|
|
(?:.|[\n\r]){0,32}?
|
|
|
|
|
\b
|
|
|
|
|
(
|
2025-06-26 11:31:41 -07:00
|
|
|
(?:[0-9A-Z_-]{11}){2}
|
2025-11-04 13:55:31 -05:00
|
|
|
)
|
|
|
|
|
pattern_requirements:
|
|
|
|
|
min_digits: 2
|
|
|
|
|
min_uppercase: 1
|
|
|
|
|
min_lowercase: 1
|
2025-06-25 15:12:42 -07:00
|
|
|
min_entropy: 3.5
|
|
|
|
|
confidence: medium
|
|
|
|
|
examples:
|
|
|
|
|
- mandrill_token = taqnVL1P5AJrM4oU4opSqQ
|
|
|
|
|
categories:
|
|
|
|
|
- api
|
|
|
|
|
- identifier
|
|
|
|
|
validation:
|
|
|
|
|
type: Http
|
|
|
|
|
content:
|
|
|
|
|
request:
|
|
|
|
|
method: POST
|
|
|
|
|
headers:
|
|
|
|
|
Content-Type: application/json
|
|
|
|
|
body: |
|
|
|
|
|
{ "key": "{{ TOKEN }}" }
|
2026-03-03 16:47:59 -08:00
|
|
|
url: https://mandrillapp.com/api/1.0/users/ping2.json
|
2025-06-25 15:12:42 -07:00
|
|
|
response_matcher:
|
|
|
|
|
- report_response: true
|
|
|
|
|
- type: StatusMatch
|
|
|
|
|
status: [200]
|
|
|
|
|
- type: WordMatch
|
2026-02-10 19:24:19 -08:00
|
|
|
words: ['"PONG!"']
|
|
|
|
|
references:
|
|
|
|
|
- https://mandrillapp.com/api/docs/
|