Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save pabit/fcaf77683cc6ee9c4accb0efd96b8d00 to your computer and use it in GitHub Desktop.

Select an option

Save pabit/fcaf77683cc6ee9c4accb0efd96b8d00 to your computer and use it in GitHub Desktop.
# Create a profile (cookbook)
inspec init profile SQLServerSecurity
# check profile is valid
insec check SQLServerSecurity
# Run single inspec.rb file
inspec exec mytest.rb
# Run a profile
inspec exec SQLServerSecurity
# test remote machine via ssh
inspec exec SQLServerSecurity --key-files /path/keys/ssh.key --target ssh://root@192.168.1.12
inspec exec mytest.rb --key-files /path/keys/ssh.key --target ssh://root@192.168.1.12
# test remote machine via WinRM
insec exec mytest.rb --target winrm://administrator@192.168.1.1 --password SuperSecretPassword
# test remote docker
inspec mytest.rb --target docker://containerid
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment