Checks whether a Linux server according to security best practices as defined in the CIS Distribution-Independent Linux Benchmark
Find a file
2019-02-10 11:44:56 +02:00
cfg/1.1.0 Uploaded improved yaml file for version 1.1.0 2019-01-31 14:06:58 +02:00
app.go Initialized basic bench project 2019-01-30 16:54:44 +02:00
app_test.go Initialized basic bench project 2019-01-30 16:54:44 +02:00
LICENSE Added license and notice files. 2019-02-10 11:44:56 +02:00
main.go Initialized basic bench project 2019-01-30 16:54:44 +02:00
NOTICE Added license and notice files. 2019-02-10 11:44:56 +02:00
README.md Specify Distribution Independent Linux Benchmark 2019-02-05 06:31:23 -08:00
root.go Uploaded improved yaml file for version 1.1.0 2019-01-31 14:06:58 +02:00
utils.go Initialized basic bench project 2019-01-30 16:54:44 +02:00

License

Linux-bench is a Go application that checks whether The linux operating system is configured securely by running the checks documented in the CIS Distribution Independent Linux Benchmark.

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

CIS Linux Benchmark support

linux-bench currently supports tests for benchmark version 1.1.0 only.

linux-bench will determine the test set to run on the host machine based on the following:

Operating system platform - ubuntu/debian/rhel/coreos
Boot loader - grub/grub2
System logging tool - rsyslog/syslog-ng
Lsm - selinux/apparmor

Installation

Installing from sources

Intall Go, then clone this repository and run as follows (assuming your $GOPATH is set):

go get github.com/aquasecurity/linux-bench
cd $GOPATH/src/github.com/aquasecurity/linux-bench
go build -o linux-bench .

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

# Run checks
./linux-bench

# Run checks for specified linux cis version
./linux-bench --version <version>

Tests

Tests are specified in definition files cfg/<version>/definitions.yaml.

Where <version> is the version of linux cis for which the test applies.

Contributing

We welcome PRs and issue reports.