k8s-svc-acct-issuer-set: Checks if service-account-issuer is correctly configured

日期: 2025-08-01 | 影响软件: k8s svc acct issuer set | POC: 已公开

漏洞描述

Checks if the service-account-issuer argument is correctly configured in the API server, critical for issuing valid service tokens.

PoC代码[已公开]

id: k8s-svc-acct-issuer-set

info:
  name: Checks if service-account-issuer is correctly configured
  author: princechaddha
  severity: medium
  description: Checks if the service-account-issuer argument is correctly configured in the API server, critical for issuing valid service tokens.
  impact: |
    If the service-account-issuer argument is not set, the API server may issue tokens that are not accepted by other services, leading to authentication failures.
  remediation: |
    Set the service-account-issuer argument to a valid issuer URL in the API server's startup arguments or configuration file. This ensures the tokens issued are trusted across services.
  reference:
    - https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/
  tags: cloud,devops,kubernetes,devsecops,api-server,k8s,k8s-cluster-security

variables:
  argument: "service-account-issuer"

self-contained: true
code:
  - engine:
      - sh
      - bash
    source: |
      kubectl get pods -n kube-system -l component=kube-apiserver -o jsonpath="{.items[*].spec.containers[*].command}"

    matchers-condition: and
    matchers:
      - type: word
        words:
          - 'kube-apiserver'

      - type: word
        words:
          - "service-account-issuer"
        negative: true

    extractors:
      - type: dsl
        dsl:
          - '"API server configuration lacks the " + argument + " argument."'
# digest: 4a0a00473045022100979349abc90ce4e32c16343c9f0da1aa01ff42bf6fb49a77b1dd3865b2e79e6702206b28a3cef6bdd843bc3de19c8e958ab5bfa61a589846317d5a7b94d939f03369:922c64590222798bb761d5b6d8e72950