Minimize wildcard use in Roles and ClusterRoles (Automated)
Scanned 9/3/2026
Install to Claude Code
npx -y skills add CyberStrikeus/CyberStrike --skill cis-eks-v160-4.1.3 --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Cis Eks V160 4.1.3?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/cyberstrikeus-cis-eks-v160-4-1-3)More formats (shields.io, HTML) on the badges page.
---
name: cis-eks-v160-4.1.3
description: "Minimize wildcard use in Roles and ClusterRoles (Automated)"
category: cis-eks
version: "1.6.0"
author: cyberstrike-official
tags: [cis, eks, kubernetes, aws, rbac, service-accounts, wildcard, least-privilege]
cis_id: "4.1.3"
cis_benchmark: "CIS Amazon Elastic Kubernetes Service (EKS) Benchmark v1.6.0"
tech_stack: [kubernetes, aws, eks]
cwe_ids: []
chains_with: []
prerequisites: []
severity_boost: {}
---
# 4.1.3 Minimize wildcard use in Roles and ClusterRoles (Automated)
## Profile Applicability
- Level 1
## Description
Kubernetes Roles and ClusterRoles provide access to resources based on sets of objects and actions that can be taken on those objects. It is possible to set either of these to be the wildcard "\*" which matches all items.
Use of wildcards is not optimal from a security perspective as it may allow for inadvertent access to be granted when new resources are added to the Kubernetes API either as CRDs or in later versions of the product.
## Rationale
The principle of least privilege recommends that users are provided only the access required for their role and nothing more. The use of wildcard rights grants is likely to provide excessive rights to the Kubernetes API.
## Audit Procedure
Retrieve the roles defined across each namespace in the cluster and review for wildcards:
```bash
kubectl get roles --all-namespaces -o yaml
```
Retrieve the cluster roles defined in the cluster and review for wildcards:
```bash
kubectl get clusterroles -o yaml
```
## Remediation
Where possible replace any use of wildcards in clusterroles and roles with specific objects or actions.
## Default Value
Not specified.
## References
None specified.
## CIS Controls
| Controls Version | Control | IG 1 | IG 2 | IG 3 |
| ---------------- | ------------------------ | ---- | ---- | ---- |
| v8 | 5.2 Use Unique Passwords | x | x | x |
| v7 | 4.4 Use Unique Passwords | | x | x |
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!