Token Auth File Is Set
- Query id: 32ecd76e-7bbf-402e-bf48-8b9485749558
- Query name: Token Auth File Is Set
- Platform: Kubernetes
- Severity: High
- Category: Access Control
- URL: Github
Description¶
When using kube-apiserver command, the 'token-auth-file' flag should not be set
Documentation
Code samples¶
Code samples with security vulnerabilities¶
Postitive test num. 1 - yaml file
apiVersion: v1
kind: Pod
metadata:
name: command-demo
labels:
purpose: demonstrate-command
spec:
containers:
- name: command-demo-container
image: gcr.io/google_containers/kube-apiserver-amd64:v1.6.0
command: ["kube-apiserver", "--token-auth-file=/path/to/any/file"]
restartPolicy: OnFailure
Postitive test num. 2 - yaml file
apiVersion: v1
kind: Pod
metadata:
name: command-demo
labels:
purpose: demonstrate-command
spec:
containers:
- name: command-demo-container
image: gcr.io/google_containers/kube-apiserver-amd64:v1.6.0
command: ["kube-apiserver"]
args: ["--token-auth-file=/path/to/any/file"]
restartPolicy: OnFailure