漏洞描述
Searches for exposed Kubernetes API servers which return version information unauthenticated
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
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()