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
+19
View File
@@ -0,0 +1,19 @@
id: kubernetes-version
info:
name: Kubernetes Version Exposure
author: raesene
severity: info
verified: true
description: |-
Searches for exposed Kubernetes API servers which return version information unauthenticated
tags: kubernetes,version,detect
created: 2024/01/05
rules:
r0:
request:
method: GET
path: /version
expression: response.status == 200 && response.body.bcontains(b"gitVersion") && response.body.bcontains(b"goVersion") && response.body.bcontains(b"platform")
expression: r0()