inspec/lib/resources/auditd_rules.rb

54 lines
1.5 KiB
Ruby
Raw Normal View History

2015-07-26 22:44:01 +02:00
# encoding: utf-8
# copyright: 2015, Vulcano Security GmbH
2015-10-06 18:55:44 +02:00
# author: Christoph Hartmann
# author: Dominik Richter
2015-07-26 22:44:01 +02:00
# license: All rights reserved
2015-09-05 23:07:34 +02: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
2015-10-26 04:04:18 +01:00
class AuditDaemonRules < Inspec.resource(1)
2015-10-26 11:10:30 +01:00
name 'auditd_rules'
2015-07-26 22:44:01 +02:00
def initialize
2015-10-26 04:04:18 +01:00
@content = inspec.command('/sbin/auditctl -l').stdout.chomp
2015-07-26 22:44:01 +02:00
@opts = {
assignment_re: /^\s*([^:]*?)\s*:\s*(.*?)\s*$/,
multiple_values: true,
2015-07-26 22:44:01 +02:00
}
end
def params
@params ||= SimpleConfig.new(@content, @opts).params
2015-07-26 22:44:01 +02:00
end
2015-09-03 20:43:58 +02:00
def method_missing(name)
params[name.to_s]
2015-07-26 22:44:01 +02:00
end
2015-09-03 20:43:58 +02:00
def status(name)
2015-07-26 22:44:01 +02:00
@status_opts = {
assignment_re: /^\s*([^:]*?)\s*:\s*(.*?)\s*$/,
multiple_values: false,
2015-07-26 22:44:01 +02:00
}
2015-10-26 04:04:18 +01:00
@status_content ||= inspec.command('/sbin/auditctl -s').stdout.chomp
2015-07-26 22:44:01 +02:00
@status_params = SimpleConfig.new(@status_content, @status_opts).params
2015-09-03 20:35:23 +02:00
status = @status_params['AUDIT_STATUS']
return nil if status.nil?
2015-07-26 22:44:01 +02:00
items = Hash[status.scan(/([^=]+)=(\w*)\s*/)]
2015-09-03 20:45:37 +02:00
items[name]
2015-07-26 22:44:01 +02:00
end
def to_s
'Audit Daemon Rules'
2015-07-26 22:44:01 +02:00
end
end