feat: add curated internal network pocs

This commit is contained in:
ZacharyZcR
2026-07-16 01:45:09 +08:00
parent 61ae87d171
commit 621b2c2f24
52 changed files with 1230 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
id: elasticsearch-unauth
info:
name: ElasticSearch Information Disclosure
author: p0wd3r
severity: high
verified: true
description: |-
/_nodes #查看节点数据
/_cat/indices #索引
_cat/indices
/_plugin/head
/_nodes/
/_status
/_search?pretty
tags: elasticsearch,unauth
created: 2023/07/07
rules:
r0:
request:
method: GET
path: /_cat
expression: response.status == 200 && response.body.bcontains(b"/_cat/master")
expression: r0()