No description
Find a file
Dominik Richter 2e1106b933 feature: add rule hierarchy with include and require rules
include_rules 'vulcanosec/ssh'

this will include all rules defined in vulcanosec/ssh

    require_rules 'vulcanosec/linux'

this will not include any rules yet, but you may choose what you want to pull in.

both have a block attached which will allow you to choose rules (for require_rules) and redefined/change existing rules as you like. small example:

    require_rules 'vulcanosec/linux' do
      rule fs-3 do
        impact 1.0
      end
    end

Signed-off-by: Dominik Richter <dominik@vulcanosec.com>
2015-06-20 00:00:53 +02:00
bin improvement: split vulcano core library from verification 2015-06-19 16:45:36 +02:00
lib feature: add rule hierarchy with include and require rules 2015-06-20 00:00:53 +02:00
Gemfile add license_finder to dev gems 2015-06-19 15:06:13 +02:00
README.md feature: add pry for development consoles 2015-06-10 17:40:16 +02:00
vulcano.gemspec update serverspec dependency 2015-06-18 23:54:09 +02:00

vulcanosec cli

CLI tool for vulcanosec.

Development

You can get a console within your evaluation context. Example:

rule "sth-new" do
  binding.pry
  ...
end

Once you run vulcano check myprofile/ you will get a CLI context.

Copyright 2015 Dominik Richter. All rights reserved.