mirror of
https://github.com/lunchcat/sif.git
synced 2026-07-28 14:37:01 -07:00
modules/recon/docker-api-exposure.yaml flags an unauthenticated Docker Engine api, keyed on the api version paired with the minimum api version that a generic version endpoint does not carry, then extracts the engine version. modules/recon/kubernetes-api-exposure.yaml flags an internet reachable Kubernetes api server through its anonymous version endpoint, keyed on the git version paired with a build field, then extracts the version. modules/recon/kubelet-api-exposure.yaml flags an exposed kubelet whose pod list leaks the cluster workload, keyed on the PodList kind paired with an api version, then extracts a pod namespace. internal/modules/runtime_api_exposure_test.go drives the three modules end to end through ExecuteHTTPModule and asserts the leak alongside the near misses a strict review wants pinned: a generic version response, each service with one keying field missing, a service list that is not a pod list, a plain 200 and a 404. verify: go test ./internal/modules, each matcher and extractor proven to bite (break -> red, restore -> green).
43 lines
807 B
YAML
43 lines
807 B
YAML
# Kubernetes API Server Exposure Detection Module
|
|
|
|
id: kubernetes-api-exposure
|
|
info:
|
|
name: Kubernetes API Server Exposure
|
|
author: sif
|
|
severity: medium
|
|
description: Detects an internet reachable Kubernetes api server through its anonymous version endpoint
|
|
tags: [kubernetes, k8s, api, exposure, recon]
|
|
|
|
type: http
|
|
|
|
http:
|
|
method: GET
|
|
paths:
|
|
- "{{BaseURL}}/version"
|
|
|
|
matchers:
|
|
- type: status
|
|
status:
|
|
- 200
|
|
|
|
- type: word
|
|
part: body
|
|
words:
|
|
- "\"gitVersion\""
|
|
|
|
- type: word
|
|
part: body
|
|
condition: or
|
|
words:
|
|
- "\"gitTreeState\""
|
|
- "\"buildDate\""
|
|
- "\"compiler\""
|
|
|
|
extractors:
|
|
- type: regex
|
|
name: k8s_version
|
|
part: body
|
|
regex:
|
|
- '"gitVersion"\s*:\s*"([^"]+)"'
|
|
group: 1
|