GithubHelp home page GithubHelp logo

slowmistio / kube-bench-security Goto Github PK

View Code? Open in Web Editor NEW

This project forked from aquasecurity/kube-bench

1.0 1.0 0.0 708 KB

The Kubernetes Bench for Security is a Go application that checks whether Kubernetes is deployed according to security best practices

License: Apache License 2.0

Dockerfile 1.83% Go 96.43% Shell 1.49% Makefile 0.25%

kube-bench-security's Introduction

Build Status License Docker image Source commit

kube-bench logo

kube-bench is a Go application 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

CIS Kubernetes Benchmark support

kube-bench supports the tests for multiple versions of Kubernetes (1.6, 1.7, 1.8, and 1.11) as defined in the CIS Benchmarks 1.0.0, 1.1.0, 1.2.0, and 1.30 respectively. It will determine the test set to run based on the Kubernetes version running on the machine.

Installation

You can choose to

  • run kube-bench from inside a container (sharing PID namespace with the host)
  • run a container that installs kube-bench on the host, and then run kube-bench directly on the host
  • install the latest binaries from the Releases page,
  • compile it from source.

Running inside a container

You can avoid installing kube-bench on the host by running it inside a container using the host PID namespace.

docker run --pid=host -t aquasec/kube-bench:latest <master|node>

You can even use your own configs by mounting them over the default ones in /opt/kube-bench/cfg/

docker run --pid=host -t -v path/to/my-config.yaml:/opt/kube-bench/cfg/config.yaml aquasec/kube-bench:latest <master|node>

Note: the tests require either the kubelet or kubectl binary in the path in order to know the Kubernetes version. You can pass -v $(which kubectl):/usr/bin/kubectl to the above invocations to resolve this.

Running in a kubernetes cluster

Run the master check

kubectl run --rm -i -t kube-bench-master --image=aquasec/kube-bench:latest --restart=Never --overrides="{ \"apiVersion\": \"v1\", \"spec\": { \"hostPID\": true, \"nodeSelector\": { \"node-role.kubernetes.io/master\": \"\" }, \"tolerations\": [ { \"key\": \"node-role.kubernetes.io/master\", \"operator\": \"Exists\", \"effect\": \"NoSchedule\" } ] } }" -- master --version 1.11

Run the node check

kubectl run --rm -i -t kube-bench-node --image=aquasec/kube-bench:latest --restart=Never --overrides="{ \"apiVersion\": \"v1\", \"spec\": { \"hostPID\": true } }" -- node --version 1.11

Installing from a container

This command copies the kube-bench binary and configuration files to your host from the Docker container:

docker run --rm -v `pwd`:/host aquasec/kube-bench:latest install

You can then run ./kube-bench <master|node>.

Installing from sources

If Go is installed on the target machines, you can simply clone this repository and run as follows (assuming your $GOPATH is set):

go get github.com/aquasecurity/kube-bench
go get github.com/golang/dep/cmd/dep
cd $GOPATH/src/github.com/aquasecurity/kube-bench
$GOPATH/bin/dep ensure -vendor-only
go build -o kube-bench .

# See all supported options
./kube-bench --help

# Run the all checks on a master node
./kube-bench master

Configuration

Kubernetes config and binary file locations and names can vary from installation to installation, so these are configurable in the cfg/config.yaml file.

For each type of node (master, node or federated) there is a list of components, and for each component there is a set of binaries (bins) and config files (confs) that kube-bench will look for (in the order they are listed). If your installation uses a different binary name or config file location for a Kubernetes component, you can add it to cfg/config.yaml.

  • bins - If there is a bins list for a component, at least one of these binaries must be running. The tests will consider the parameters for the first binary in the list found to be running.
  • podspecs - From version 1.2.0 of the benchmark (tests for Kubernetes 1.8), the remediation instructions were updated to assume that the configuration for several kubernetes components is defined in a pod YAML file, and podspec settings define where to look for that configuration.
  • confs - If one of the listed config files is found, this will be considered for the test. Tests can continue even if no config file is found. If no file is found at any of the listed locations, and a defaultconf location is given for the component, the test will give remediation advice using the defaultconf location.
  • unitfiles - From version 1.2.0 of the benchmark (tests for Kubernetes 1.8), the remediation instructions were updated to assume that kubelet configuration is defined in a service file, and this setting defines where to look for that configuration.

Test config YAML representation

The tests are represented as YAML documents (installed by default into ./cfg).

An example is as listed below:

---
controls:
id: 1
text: "Master Checks"
type: "master"
groups:
- id: 1.1
  text: "Kube-apiserver"
  checks:
    - id: 1.1.1
      text: "Ensure that the --allow-privileged argument is set (Scored)"
      audit: "ps -ef | grep kube-apiserver | grep -v grep"
      tests:
      bin_op: or
      test_items:
      - flag: "--allow-privileged"
        set: true
      - flag: "--some-other-flag"
        set: false
      remediation: "Edit the /etc/kubernetes/config file on the master node and set the KUBE_ALLOW_PRIV parameter to '--allow-privileged=false'"
      scored: true

Recommendations (called checks in this document) can run on Kubernetes Master, Node or Federated API Servers. Checks are organized into groups which share similar controls (things to check for) and are grouped together in the section of the CIS Kubernetes document. These groups are further organized under controls which can be of the type master, node or federated apiserver to reflect the various Kubernetes node types.

Tests

Tests are the items we actually look for to determine if a check is successful or not. Checks can have multiple tests, which must all be successful for the check to pass.

The syntax for tests:

tests:
- flag:
  set:
  compare:
    op:
    value:
...

Tests have various operations which are used to compare the output of audit commands for success. These operations are:

  • eq: tests if the flag value is equal to the compared value.
  • noteq: tests if the flag value is unequal to the compared value.
  • gt: tests if the flag value is greater than the compared value.
  • gte: tests if the flag value is greater than or equal to the compared value.
  • lt: tests if the flag value is less than the compared value.
  • lte: tests if the flag value is less than or equal to the compared value.
  • has: tests if the flag value contains the compared value.
  • nothave: tests if the flag value does not contain the compared value.

Roadmap

Going forward we plan to release updates to kube-bench to add support for new releases of the Benchmark, which in turn we can anticipate being made for each new Kubernetes release.

We welcome PRs and issue reports.

kube-bench-security's People

Contributors

lizrice avatar ttousai avatar jerbia avatar wmedlar avatar hutr avatar bitvector2 avatar mikekim avatar mirwan avatar 5cr0ll avatar tenzer avatar johscheuer avatar jhvhs avatar karampok avatar lukebond avatar nickperry avatar bvwells avatar clemensw avatar nuwaida avatar

Stargazers

Acumenix avatar

Watchers

imslowmist avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.