cyber-security-resources/docker-and-k8s-security/docker/run_cis_bench_locally.sh
2021-04-11 19:55:35 -04:00

38 lines
1.1 KiB
Bash

#!/bin/bash
# A simple script to install Chef inspec and the CIS Docker Benchmark InSpec Profile
# Runs on Ubuntu, Debian, Parrot, and Kali Linux
# Author: Omar Santos @santosomar
# version 0.1
red=$(tput setaf 1)
green=$(tput setaf 2)
reset=$(tput sgr0)
clear
echo "${green} R U N C I S B E N C H M A R K D O C K E R
${reset}
Author: Omar Ωr Santos
Twitter: @santosomar
Version: 0.1
${red}This script will automatically install or upgrade InSpec and will run the latest CIS Docker Benchmark from github/dev-sec/cis-docker-benchmark
"
read -n 1 -s -r -p "Press any key to continue the setup..."
echo "${green}Installing InSpec"
echo "${reset}========================="
curl https://omnitruck.chef.io/install.sh | sudo bash -s -- -P inspec
echo "${red} Running CIS Docker Benchmark ${reset} locally on $(hostname)"
inspec exec https://github.com/dev-sec/cis-docker-benchmark > cis_benchmark_results.txt
printf -- '\n';
echo "${red}REPORT SUMMARY:"
tail -n 2 cis_benchmark_results.txt
printf -- '\n';
echo "${reset}The complete results have been stored at:
${green}$(pwd)/cis_benchmark_results.txt "