inspec/lib/resources/registry_key.rb

54 lines
1.2 KiB
Ruby
Raw Normal View History

# encoding: utf-8
2015-07-15 13:15:18 +00:00
# copyright: 2015, Vulcano Security GmbH
# license: All rights reserved
require 'json'
# Usage:
# describe registry_key('Task Scheduler','HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\Schedule') do
# its('Start') { should eq 2 }
# end
class RegistryKey < Vulcano.resource(1)
name 'registry_key'
2015-07-26 10:30:12 +00:00
attr_accessor :reg_key
def initialize(name, reg_key = nil)
# if we have one parameter, we use it as name
reg_key = name if reg_key == nil
@name = name
@reg_key = reg_key
end
2015-07-26 10:30:12 +00:00
def getRegistryValue(path, key)
cmd = "(Get-Item 'Registry::#{path}').GetValue('#{key}')"
command_result ||= vulcano.run_command(cmd)
2015-09-05 14:07:54 +00:00
val = { exit_code: command_result.exit_status.to_i, data: command_result.stdout }
2015-07-26 10:30:12 +00:00
val
end
2015-09-03 18:43:58 +00:00
def convertValue(value)
2015-07-26 10:30:12 +00:00
val = value.strip
val = val.to_i if val.match(/^\d+$/)
2015-09-04 07:59:30 +00:00
val
2015-07-26 10:30:12 +00:00
end
2015-07-26 10:30:12 +00:00
# returns nil, if not existant or value
def method_missing(meth)
# get data
val = getRegistryValue(@reg_key, meth)
2015-07-26 10:30:12 +00:00
# verify data
if (val[:exit_code] == 0)
2015-09-04 07:59:30 +00:00
return convertValue(val[:data])
2015-07-26 10:30:12 +00:00
else
2015-09-04 07:59:30 +00:00
return nil
2015-07-26 10:30:12 +00:00
end
end
2015-07-26 10:30:12 +00:00
def to_s
"Registry Key #{@name}"
end
end