metasploit-framework/lib/rex/registry/regf.rb

26 lines
354 B
Ruby
Raw Normal View History

# -*- coding: binary -*-
2012-01-11 00:45:24 +00:00
module Rex
module Registry
class RegfBlock
2013-08-30 21:28:33 +00:00
attr_accessor :timestamp, :root_key_offset
2012-01-11 00:45:24 +00:00
2013-08-30 21:28:33 +00:00
def initialize(hive)
2013-08-30 21:28:33 +00:00
regf_header = hive[0x00, 4]
2013-08-30 21:28:33 +00:00
if regf_header !~ /regf/
puts "Not a registry hive"
return
end
2012-01-11 00:45:24 +00:00
2013-08-30 21:28:33 +00:00
@timestamp = hive[0x0C, 8].unpack('q').first
@root_key_offset = 0x20
2012-01-11 00:45:24 +00:00
2013-08-30 21:28:33 +00:00
end
2012-01-11 00:45:24 +00:00
end
end
end