├── BSD License.txt ├── Gemfile ├── README.md ├── Rakefile ├── environment.yml.example ├── properties.yml.example └── spec ├── .DS_Store ├── simple └── simple_spec.rb ├── spec_helper.rb.root-example ├── spec_helper.rb.sudo-example └── stig └── stig_spec.rb /BSD License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaron868/security-audit/HEAD/BSD License.txt -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'serverspec' 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaron868/security-audit/HEAD/README.md -------------------------------------------------------------------------------- /Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaron868/security-audit/HEAD/Rakefile -------------------------------------------------------------------------------- /environment.yml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaron868/security-audit/HEAD/environment.yml.example -------------------------------------------------------------------------------- /properties.yml.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaron868/security-audit/HEAD/properties.yml.example -------------------------------------------------------------------------------- /spec/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaron868/security-audit/HEAD/spec/.DS_Store -------------------------------------------------------------------------------- /spec/simple/simple_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaron868/security-audit/HEAD/spec/simple/simple_spec.rb -------------------------------------------------------------------------------- /spec/spec_helper.rb.root-example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaron868/security-audit/HEAD/spec/spec_helper.rb.root-example -------------------------------------------------------------------------------- /spec/spec_helper.rb.sudo-example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaron868/security-audit/HEAD/spec/spec_helper.rb.sudo-example -------------------------------------------------------------------------------- /spec/stig/stig_spec.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aaron868/security-audit/HEAD/spec/stig/stig_spec.rb --------------------------------------------------------------------------------