Tests Kubernetes clusters for adherence to security best practices using kube-bench.
Go to file
Andy Pitcher df4e16500a
Merge pull request #540 from krunalhinguu/backport-539-v0.7
[release/v0.6] fix: 4.2.4 Verify that if defined, the --read-only-port argument is set to 0
2025-10-15 11:33:33 +02:00
.github refactor: updating release creation step (#536) 2025-10-09 09:56:09 +05:30
cmd/kb-summarizer
hack feat: update kube-bench v0.13.0 2025-10-01 16:38:03 +05:30
package fix: 4.2.4 (read-only-port) change test and remediation to reflect k3s' new default 2025-10-15 10:17:35 +05:30
pkg/kb-summarizer validate: fixes errcheck - from r.Close() to ensure proper resource cleanup 2025-04-04 15:11:00 +05:30
tests
.gitignore
.golangci.yaml Bump golangci-lint to v2.0.2 and migrate .golangci.yaml to v2 format 2025-04-04 15:10:38 +05:30
.yamllint.yaml
CODEOWNERS fix order of ownership in codeowners 2025-01-08 16:01:39 +05:30
LICENSE
Makefile validate: improve golangci-lint provisioning and remove validate-go script 2025-04-04 15:01:14 +05:30
README.md added branch strategy reference in readme 2024-10-08 20:10:47 +05:30
go.mod feat: update kube-bench v0.13.0 2025-10-01 16:38:03 +05:30
go.sum feat: update kube-bench v0.13.0 2025-10-01 16:38:03 +05:30

README.md

security-scan

NOTE: This repo is currently being merged with the cis-operator repo to track security scanned and CIS related issues. Please submit any new inquiries in the cis-operator repo. For the current branch strategy related to the security-scan, please refer to Branches and Releases

This repo has all the stuff needed for running CIS scan on RKE clusters.

Multi-purpose repo:

  • Packaging for all the components needed for CIS scan (sonobuoy, kube-bench)
  • kube-bench-summarizer
  • plugin script for sonobuoy tool (a different script is passed using command)

The corresponding docker image (rancher/security-scan) is used in the system charts.

Building

make

Tag the image to personal docker hub repo

docker tag rancher/security-scan:<MAKE TAG OUTPUT> <DOCKER_HUB_USER>/security-scan:dev

Push docker tag

docker push <DOCKER_HUB_USER>/security-scan:dev

On Rancher install CIS Benchmark app, changing the Values YAML to point to your image

image:
...
    securityScan:
        repository: <DOCKER_HUB_USER>/security-scan
        tag: dev

License

Copyright (c) 2019 Rancher Labs, Inc.

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.