Ensure that default service accounts are not actively used. (Manual)
Scanned 9/3/2026
Install to Claude Code
npx -y skills add CyberStrikeus/CyberStrike --skill cis-k8s-v200-5.1.5 --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Cis K8s V200 5.1.5?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/cyberstrikeus-cis-k8s-v200-5-1-5)More formats (shields.io, HTML) on the badges page.
---
name: cis-k8s-v200-5.1.5
description: "Ensure that default service accounts are not actively used. (Manual)"
category: cis-k8s
version: "2.0.0"
author: cyberstrike-official
tags: [cis, kubernetes, policies, rbac, service-accounts, default-service-account, automount-token]
cis_id: "5.1.5"
cis_benchmark: "CIS Kubernetes Benchmark v2.0.0"
tech_stack: [kubernetes]
cwe_ids: []
chains_with: []
prerequisites: []
severity_boost: {}
---
# 5.1.5 Ensure that default service accounts are not actively used. (Manual)
## Profile Applicability
- Level 1 - Master Node
## Description
The `default` service account should not be used to ensure that rights granted to applications can be more easily audited and reviewed.
## Rationale
Kubernetes provides a default service account which is used by cluster workloads where no specific service account is assigned to the pod. Where access to the Kubernetes API from a pod is required, a specific service account should be created for that pod, and rights granted to that service account. The default service account should be configured to ensure that it does not automatically provide a service account token, and it must not have any non-default role bindings or custom role assignments.
## Impact
All workloads which require access to the Kubernetes API will require an explicit service account to be created.
## Audit
For each namespace in the cluster, review the rights assigned to the default service account and ensure that it has no roles or cluster roles bound to it apart from the defaults.
Additionally ensure that the `automountServiceAccountToken: false` setting is in place for each default service account.
## Remediation
Create explicit service accounts wherever a Kubernetes workload requires specific access to the Kubernetes API server.
Modify the configuration of each default service account to include this value:
```yaml
automountServiceAccountToken: false
```
## Default Value
By default the `default` service account allows for its service account token to be mounted in pods in its namespace.
## References
1. https://kubernetes.io/docs/tasks/configure-pod-container/configure-service-account/
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!