inspec/lib/resources/auditd_rules.rb

54 lines
1.5 KiB
Ruby
Raw Normal View History

2015-07-26 20:44:01 +00:00
# encoding: utf-8
# copyright: 2015, Vulcano Security GmbH
2015-10-06 16:55:44 +00:00
# author: Christoph Hartmann
# author: Dominik Richter
2015-07-26 20:44:01 +00:00
# license: All rights reserved
2015-09-05 21:07:34 +00:00
# Usage:
# describe audit_daemon_rules do
# its("LIST_RULES") {should contain_match(/^exit,always arch=.* key=time-change syscall=adjtimex,settimeofday/) }
# its("LIST_RULES") {should contain_match(/^exit,always arch=.* key=time-change syscall=stime,settimeofday,adjtimex/) }
# its("LIST_RULES") {should contain_match(/^exit,always arch=.* key=time-change syscall=clock_settime/)}
# its("LIST_RULES") {should contain_match(/^exit,always watch=\/etc\/localtime perm=wa key=time-change/)}
# end
class AuditDaemonRules < Vulcano.resource(1)
2015-10-26 10:10:30 +00:00
name 'auditd_rules'
2015-07-26 20:44:01 +00:00
def initialize
@content = vulcano.command('/sbin/auditctl -l').stdout.chomp
2015-07-26 20:44:01 +00:00
@opts = {
assignment_re: /^\s*([^:]*?)\s*:\s*(.*?)\s*$/,
multiple_values: true,
2015-07-26 20:44:01 +00:00
}
end
def params
@params ||= SimpleConfig.new(@content, @opts).params
2015-07-26 20:44:01 +00:00
end
2015-09-03 18:43:58 +00:00
def method_missing(name)
params[name.to_s]
2015-07-26 20:44:01 +00:00
end
2015-09-03 18:43:58 +00:00
def status(name)
2015-07-26 20:44:01 +00:00
@status_opts = {
assignment_re: /^\s*([^:]*?)\s*:\s*(.*?)\s*$/,
multiple_values: false,
2015-07-26 20:44:01 +00:00
}
@status_content ||= vulcano.command('/sbin/auditctl -s').stdout.chomp
2015-07-26 20:44:01 +00:00
@status_params = SimpleConfig.new(@status_content, @status_opts).params
2015-09-03 18:35:23 +00:00
status = @status_params['AUDIT_STATUS']
return nil if status.nil?
2015-07-26 20:44:01 +00:00
items = Hash[status.scan(/([^=]+)=(\w*)\s*/)]
2015-09-03 18:45:37 +00:00
items[name]
2015-07-26 20:44:01 +00:00
end
def to_s
'Audit Daemon Rules'
2015-07-26 20:44:01 +00:00
end
end