-
-
Save pabit/fcaf77683cc6ee9c4accb0efd96b8d00 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # 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