forked from mirrors/kingfisher
30 lines
No EOL
753 B
YAML
30 lines
No EOL
753 B
YAML
rules:
|
|
- name: Supabase API Key
|
|
id: kingfisher.supabase.1
|
|
pattern: |
|
|
(?xi)
|
|
\b
|
|
(
|
|
sbp_[a-z0-9_-]{40}
|
|
)
|
|
\b
|
|
min_entropy: 3.5
|
|
confidence: medium
|
|
examples:
|
|
- sbp_abcd1234efgh5678ijkl9012mnop3456qrst7890
|
|
- sbp_1234567890abcdefghij1234567890klmnopqrst
|
|
references:
|
|
- https://supabase.com/docs/reference/api/v1-get-an-organization
|
|
validation:
|
|
type: Http
|
|
content:
|
|
request:
|
|
headers:
|
|
Authorization: "Bearer {{ TOKEN }}"
|
|
method: GET
|
|
url: https://api.supabase.com/v1/organizations
|
|
response_matcher:
|
|
- report_response: true
|
|
- type: StatusMatch
|
|
status:
|
|
- 200 |