2017-05-26 09:25:29 +00:00
|
|
|
// Copyright © 2017 Aqua Security Software Ltd. <info@aquasec.com>
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
|
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
2017-07-25 00:34:07 +00:00
|
|
|
goflag "flag"
|
2017-05-26 09:25:29 +00:00
|
|
|
"fmt"
|
|
|
|
"os"
|
|
|
|
|
2017-06-20 10:10:11 +00:00
|
|
|
"github.com/aquasecurity/kube-bench/check"
|
2019-03-07 17:02:43 +00:00
|
|
|
"github.com/golang/glog"
|
2017-05-26 09:25:29 +00:00
|
|
|
"github.com/spf13/cobra"
|
|
|
|
"github.com/spf13/viper"
|
|
|
|
)
|
|
|
|
|
2019-04-29 10:17:06 +00:00
|
|
|
type FilterOpts struct {
|
|
|
|
CheckList string
|
|
|
|
GroupList string
|
|
|
|
Scored bool
|
|
|
|
Unscored bool
|
|
|
|
}
|
|
|
|
|
2017-05-26 09:25:29 +00:00
|
|
|
var (
|
2017-11-13 15:25:34 +00:00
|
|
|
envVarsPrefix = "KUBE_BENCH"
|
|
|
|
defaultKubeVersion = "1.6"
|
2018-04-12 18:22:50 +00:00
|
|
|
kubeVersion string
|
2017-11-13 15:25:34 +00:00
|
|
|
cfgFile string
|
2018-04-12 18:22:50 +00:00
|
|
|
cfgDir string
|
2017-11-13 15:25:34 +00:00
|
|
|
jsonFmt bool
|
2018-01-11 18:01:58 +00:00
|
|
|
pgSQL bool
|
2019-03-07 17:02:43 +00:00
|
|
|
masterFile = "master.yaml"
|
|
|
|
nodeFile = "node.yaml"
|
2017-11-13 15:25:34 +00:00
|
|
|
federatedFile string
|
2018-04-10 19:58:19 +00:00
|
|
|
noResults bool
|
|
|
|
noSummary bool
|
|
|
|
noRemediations bool
|
2019-04-29 10:17:06 +00:00
|
|
|
filterOpts FilterOpts
|
2019-05-29 15:05:55 +00:00
|
|
|
includeTestOutput bool
|
|
|
|
outputFile string
|
2017-05-26 09:25:29 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// RootCmd represents the base command when called without any subcommands
|
|
|
|
var RootCmd = &cobra.Command{
|
2017-06-20 08:52:53 +00:00
|
|
|
Use: os.Args[0],
|
2017-06-19 20:17:19 +00:00
|
|
|
Short: "Run CIS Benchmarks checks against a Kubernetes deployment",
|
2018-08-10 19:55:02 +00:00
|
|
|
Long: `This tool runs the CIS Kubernetes Benchmark (https://www.cisecurity.org/benchmark/kubernetes/)`,
|
2019-03-07 17:02:43 +00:00
|
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
|
|
if isMaster() {
|
|
|
|
glog.V(1).Info("== Running master checks ==\n")
|
|
|
|
runChecks(check.MASTER)
|
|
|
|
}
|
|
|
|
glog.V(1).Info("== Running node checks ==\n")
|
|
|
|
runChecks(check.NODE)
|
|
|
|
},
|
2017-05-26 09:25:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Execute adds all child commands to the root command sets flags appropriately.
|
|
|
|
// This is called by main.main(). It only needs to happen once to the rootCmd.
|
|
|
|
func Execute() {
|
2017-07-25 00:34:07 +00:00
|
|
|
goflag.Set("logtostderr", "true")
|
|
|
|
goflag.CommandLine.Parse([]string{})
|
|
|
|
|
2017-05-26 09:25:29 +00:00
|
|
|
if err := RootCmd.Execute(); err != nil {
|
|
|
|
fmt.Println(err)
|
2019-07-01 08:49:46 +00:00
|
|
|
// flush before exit non-zero
|
|
|
|
glog.Flush()
|
2017-05-26 09:25:29 +00:00
|
|
|
os.Exit(-1)
|
|
|
|
}
|
2019-07-01 08:49:46 +00:00
|
|
|
// flush before exit
|
|
|
|
glog.Flush()
|
2017-05-26 09:25:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
cobra.OnInitialize(initConfig)
|
|
|
|
|
2018-04-10 19:58:19 +00:00
|
|
|
// Output control
|
2018-04-10 23:04:24 +00:00
|
|
|
RootCmd.PersistentFlags().BoolVar(&noResults, "noresults", false, "Disable printing of results section")
|
2018-04-10 19:58:19 +00:00
|
|
|
RootCmd.PersistentFlags().BoolVar(&noSummary, "nosummary", false, "Disable printing of summary section")
|
|
|
|
RootCmd.PersistentFlags().BoolVar(&noRemediations, "noremediations", false, "Disable printing of remediations section")
|
2017-06-21 19:45:50 +00:00
|
|
|
RootCmd.PersistentFlags().BoolVar(&jsonFmt, "json", false, "Prints the results as JSON")
|
2018-01-11 18:01:58 +00:00
|
|
|
RootCmd.PersistentFlags().BoolVar(&pgSQL, "pgsql", false, "Save the results to PostgreSQL")
|
2019-05-01 19:43:06 +00:00
|
|
|
RootCmd.PersistentFlags().BoolVar(&filterOpts.Scored, "scored", true, "Run the scored CIS checks")
|
|
|
|
RootCmd.PersistentFlags().BoolVar(&filterOpts.Unscored, "unscored", true, "Run the unscored CIS checks")
|
2019-05-05 07:52:28 +00:00
|
|
|
RootCmd.PersistentFlags().BoolVar(&includeTestOutput, "include-test-output", false, "Prints the actual result when test fails")
|
2019-05-29 15:05:55 +00:00
|
|
|
RootCmd.PersistentFlags().StringVar(&outputFile, "outputfile", "", "Writes the JSON results to output file")
|
2018-04-10 19:58:19 +00:00
|
|
|
|
2017-07-10 00:02:39 +00:00
|
|
|
RootCmd.PersistentFlags().StringVarP(
|
2019-04-29 10:17:06 +00:00
|
|
|
&filterOpts.CheckList,
|
2017-05-26 09:25:29 +00:00
|
|
|
"check",
|
|
|
|
"c",
|
|
|
|
"",
|
|
|
|
`A comma-delimited list of checks to run as specified in CIS document. Example --check="1.1.1,1.1.2"`,
|
|
|
|
)
|
2017-07-10 00:02:39 +00:00
|
|
|
RootCmd.PersistentFlags().StringVarP(
|
2019-04-29 10:17:06 +00:00
|
|
|
&filterOpts.GroupList,
|
2017-05-26 09:25:29 +00:00
|
|
|
"group",
|
|
|
|
"g",
|
|
|
|
"",
|
|
|
|
`Run all the checks under this comma-delimited list of groups. Example --group="1.1"`,
|
|
|
|
)
|
2017-06-22 14:34:21 +00:00
|
|
|
RootCmd.PersistentFlags().StringVar(&cfgFile, "config", "", "config file (default is ./cfg/config.yaml)")
|
2018-04-12 18:22:50 +00:00
|
|
|
RootCmd.PersistentFlags().StringVarP(&cfgDir, "config-dir", "D", "./cfg/", "config directory")
|
|
|
|
RootCmd.PersistentFlags().StringVar(&kubeVersion, "version", "", "Manually specify Kubernetes version, automatically detected if unset")
|
2017-07-25 00:34:07 +00:00
|
|
|
|
|
|
|
goflag.CommandLine.VisitAll(func(goflag *goflag.Flag) {
|
|
|
|
RootCmd.PersistentFlags().AddGoFlag(goflag)
|
|
|
|
})
|
|
|
|
|
2017-05-26 09:25:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// initConfig reads in config file and ENV variables if set.
|
|
|
|
func initConfig() {
|
|
|
|
if cfgFile != "" { // enable ability to specify config file via flag
|
|
|
|
viper.SetConfigFile(cfgFile)
|
2017-06-22 14:34:21 +00:00
|
|
|
} else {
|
|
|
|
viper.SetConfigName("config") // name of config file (without extension)
|
|
|
|
viper.AddConfigPath(cfgDir) // adding ./cfg as first search path
|
2017-05-26 09:25:29 +00:00
|
|
|
}
|
|
|
|
|
2017-10-31 20:08:46 +00:00
|
|
|
viper.SetEnvPrefix(envVarsPrefix)
|
2017-05-26 09:25:29 +00:00
|
|
|
viper.AutomaticEnv() // read in environment variables that match
|
|
|
|
|
|
|
|
// If a config file is found, read it in.
|
2017-06-23 09:48:49 +00:00
|
|
|
if err := viper.ReadInConfig(); err != nil {
|
2017-06-23 09:28:58 +00:00
|
|
|
colorPrint(check.FAIL, fmt.Sprintf("Failed to read config file: %v\n", err))
|
2017-06-22 14:34:01 +00:00
|
|
|
os.Exit(1)
|
2017-05-26 09:25:29 +00:00
|
|
|
}
|
|
|
|
}
|