mirror of
https://github.com/inspec/inspec
synced 2024-11-14 00:47:10 +00:00
c7e87ca3e3
* Create file-check functionality into utility file There are the similar issues as PR #2302. Almost resources return false positives when a file does not exist or is not read. * Replace to file-check functionality * Fix dh_params and x509_certificate resources If a file is empty, OpenSSL::PKey::DH and OpenSSL::X509::Certificate have raised an exception and have skipped the inspection. Thus x509_certificate and dh_params resources are not allowed to read a empty file. * to_s of shadow expects filters is not nil * Remove workaround of sshd_config Removes the workaround of sshd_config since Travis CI fails due to a bug of dev-sec/ssh-baseline and the PR #100 will fix it. * Use init block variable in methods Signed-off-by: ERAMOTO Masaya <eramoto.masaya@jp.fujitsu.com>
112 lines
2.8 KiB
Ruby
112 lines
2.8 KiB
Ruby
# encoding: utf-8
|
|
# copyright: 2015, Vulcano Security GmbH
|
|
|
|
# Usage example:
|
|
#
|
|
# audit = command('/sbin/auditctl -l').stdout
|
|
# options = {
|
|
# assignment_regex: /^\s*([^:]*?)\s*:\s*(.*?)\s*$/,
|
|
# multiple_values: true
|
|
# }
|
|
# describe parse_config(audit, options ) do
|
|
|
|
require 'utils/file_reader'
|
|
|
|
module Inspec::Resources
|
|
class PConfig < Inspec.resource(1)
|
|
name 'parse_config'
|
|
supports platform: 'unix'
|
|
supports platform: 'windows'
|
|
desc 'Use the parse_config InSpec audit resource to test arbitrary configuration files.'
|
|
example "
|
|
output = command('some-command').stdout
|
|
describe parse_config(output, { data_config_option: value } ) do
|
|
its('setting') { should eq 1 }
|
|
end
|
|
|
|
output2 = command('curl http://127.0.0.1/php_status').stdout
|
|
# php status is in format 'key : value', and we do not allow for multiple values
|
|
options2 = {
|
|
assignment_regex: /^\s*([^:]*?)\s*:\s*(.*?)\s*$/,
|
|
multiple_values: false
|
|
}
|
|
|
|
describe parse_config(output2, options2) do
|
|
its('pool') { should eq 'www'}
|
|
its('process manager') { should eq process_manager }
|
|
end
|
|
|
|
# getting specific key from the output above, convert it to integer and then compare
|
|
# make sure 'listen queue' is below 100
|
|
describe parse_config(output2, options2 ).params['listen queue'].to_i do
|
|
it { should be < 100 }
|
|
end
|
|
"
|
|
|
|
include FileReader
|
|
|
|
attr_reader :content
|
|
def initialize(content = nil, useropts = nil)
|
|
@opts = {}
|
|
@opts = useropts.dup unless useropts.nil?
|
|
@files_contents = {}
|
|
|
|
@content = content
|
|
read_params unless @content.nil?
|
|
end
|
|
|
|
def method_missing(name)
|
|
read_params[name.to_s]
|
|
end
|
|
|
|
def params(*opts)
|
|
opts.inject(read_params) do |res, nxt|
|
|
res.respond_to?(:key) ? res[nxt] : nil
|
|
end
|
|
end
|
|
|
|
def to_s
|
|
"Parse Config #{@conf_path}"
|
|
end
|
|
|
|
private
|
|
|
|
def parse_file(conf_path)
|
|
@conf_path = conf_path
|
|
@content = read_file(conf_path).to_s
|
|
|
|
read_params
|
|
end
|
|
|
|
def read_file(path)
|
|
@files_contents[path] ||= read_file_content(path)
|
|
end
|
|
|
|
def read_params
|
|
@params ||= if content.nil?
|
|
{}
|
|
else
|
|
SimpleConfig.new(content, @opts).params
|
|
end
|
|
end
|
|
end
|
|
|
|
class PConfigFile < PConfig
|
|
name 'parse_config_file'
|
|
desc 'Use the parse_config_file InSpec resource to test arbitrary configuration files. It works identically to parse_config. Instead of using a command output, this resource works with files.'
|
|
example "
|
|
describe parse_config_file('/path/to/file') do
|
|
its('setting') { should eq 1 }
|
|
end
|
|
"
|
|
|
|
def initialize(path, opts = nil)
|
|
super(nil, opts)
|
|
parse_file(path)
|
|
end
|
|
|
|
def to_s
|
|
"Parse Config File #{@conf_path}"
|
|
end
|
|
end
|
|
end
|