1
0
mirror of https://github.com/aquasecurity/kube-bench.git synced 2024-10-09 17:39:17 +00:00
The Kubernetes Bench for Security is a Go application that checks whether Kubernetes is deployed according to security best practices.
Go to file
dependabot[bot] b3902d2d14
Bump alpine from 3.15.1 to 3.15.2 (#1130)
Bumps alpine from 3.15.1 to 3.15.2.

---
updated-dependencies:
- dependency-name: alpine
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2022-03-29 09:32:10 +03:00
.github Bump actions/cache from 2 to 3 (#1120) 2022-03-23 09:47:42 +02:00
cfg Fixed typo in policies.yaml (#1113) 2022-03-13 09:27:25 +02:00
check ASFF: no longer include timestamp in the finding ID (#1127) 2022-03-27 09:36:24 +03:00
cmd chore(message): fix wrong PGSQL_DBNAME error message (#1128) 2022-03-28 17:40:04 +03:00
docs Update docs about the --outputfile flag (#1094) 2022-02-14 19:05:48 +02:00
hack retire cis 1.3 and 1.4 (#693) 2020-10-03 11:23:28 +01:00
hooks adds kube-bench version to docker build hook (#524) 2019-11-27 20:06:42 +00:00
integration/testdata Fix status of cis-1.20 4.1.6 should be Automated (#1041) 2021-11-08 11:25:59 +02:00
internal/findings Aws asff (#770) 2020-11-23 19:43:53 +00:00
.gitignore fix integration test not testing latest code and can't run test on local (#1011) 2021-10-03 11:43:43 +03:00
.goreleaser.yml chore: add s390x arch (#1097) 2022-02-23 09:07:51 +02:00
.yamllint.yaml Support Linting YAML as part of Travis CI build (#554) 2020-01-06 09:18:25 +00:00
codecov.yml Improve Proxykubeconfig tests (#708) 2020-10-07 21:53:34 +03:00
CONTRIBUTING.md mkdocs support and update docs (#884) 2021-06-09 11:17:16 +03:00
Dockerfile Bump alpine from 3.15.1 to 3.15.2 (#1130) 2022-03-29 09:32:10 +03:00
entrypoint.sh Set -e to fail fast 2018-05-11 13:44:04 -04:00
go.mod Bump k8s.io/client-go from 0.23.4 to 0.23.5 (#1124) 2022-03-23 10:32:40 +02:00
go.sum Bump k8s.io/client-go from 0.23.4 to 0.23.5 (#1124) 2022-03-23 10:32:40 +02:00
job-ack.yaml K8s Job Command Clean (#923) 2021-07-07 18:21:30 +03:00
job-aks.yaml K8s Job Command Clean (#923) 2021-07-07 18:21:30 +03:00
job-eks-asff.yaml Support CIS Amazon Elastic Kubernetes Service (EKS) Benchmark v1.0.1 (#1045) 2021-11-18 10:42:53 +02:00
job-eks.yaml Support CIS Amazon Elastic Kubernetes Service (EKS) Benchmark v1.0.1 (#1045) 2021-11-18 10:42:53 +02:00
job-gke.yaml Support CIS Google Kubernetes Engine (GKE) Benchmark v1.2.0 (#1050) 2021-12-09 12:04:38 +02:00
job-iks.yaml K8s Job Command Clean (#923) 2021-07-07 18:21:30 +03:00
job-master.yaml K8s Job Command Clean (#923) 2021-07-07 18:21:30 +03:00
job-node.yaml K8s Job Command Clean (#923) 2021-07-07 18:21:30 +03:00
job.yaml Update kube bench docker image tag to v0.6.6 (#1085) 2022-01-30 10:38:03 +02:00
LICENSE Initial commit 2017-06-19 17:01:57 +03:00
main.go Fix issue #16 about supporting verbosity. 2017-07-07 17:01:30 +00:00
makefile chore: add s390x arch (#1097) 2022-02-23 09:07:51 +02:00
mkdocs.yml Fixing typos (#899) 2021-06-09 15:11:05 +03:00
NOTICE Create NOTICE (#199) 2019-01-16 10:53:07 +02:00
OWNERS Create OWNERS 2017-08-11 16:06:44 +01:00
README.md Remove broken badges and add link for some badges (#1083) 2022-01-19 10:13:23 +02:00

GitHub Release Downloads Docker Pulls Go Report Card Build Status License Coverage Status

kube-bench logo

kube-bench is a tool that checks whether Kubernetes is deployed securely by running the checks documented in the CIS Kubernetes Benchmark.

Tests are configured with YAML files, making this tool easy to update as test specifications evolve.

Kubernetes Bench for Security

Quick start

There are multiple ways to run kube-bench. You can run kube-bench inside a pod, but it will need access to the host's PID namespace in order to check the running processes, as well as access to some directories on the host where config files and other files are stored.

The supplied job.yaml file can be applied to run the tests as a job. For example:

$ kubectl apply -f job.yaml
job.batch/kube-bench created

$ kubectl get pods
NAME                      READY   STATUS              RESTARTS   AGE
kube-bench-j76s9   0/1     ContainerCreating   0          3s

# Wait for a few seconds for the job to complete
$ kubectl get pods
NAME                      READY   STATUS      RESTARTS   AGE
kube-bench-j76s9   0/1     Completed   0          11s

# The results are held in the pod's logs
kubectl logs kube-bench-j76s9
[INFO] 1 Master Node Security Configuration
[INFO] 1.1 API Server
...

For more information and different ways to run kube-bench see documentation

Please Note

  1. kube-bench implements the CIS Kubernetes Benchmark as closely as possible. Please raise issues here if kube-bench is not correctly implementing the test as described in the Benchmark. To report issues in the Benchmark itself (for example, tests that you believe are inappropriate), please join the CIS community.

  2. There is not a one-to-one mapping between releases of Kubernetes and releases of the CIS benchmark. See CIS Kubernetes Benchmark support to see which releases of Kubernetes are covered by different releases of the benchmark.

By default, kube-bench will determine the test set to run based on the Kubernetes version running on the machine.

Contributing

Kindly read Contributing before contributing. We welcome PRs and issue reports.

Roadmap

Going forward we plan to release updates to kube-bench to add support for new releases of the CIS Benchmark. Note that these are not released as frequently as Kubernetes releases.