class Rex::Registry::LFHashRecord

Attributes

nodekey_name_verification[RW]
nodekey_offset[RW]

Public Class Methods

new(hive_blob, offset) click to toggle source
# File lib/rex/registry/lfkey.rb, line 42
def initialize(hive_blob, offset)
  @nodekey_offset = hive_blob[offset, 4].unpack('V').first
  @nodekey_name_verification = hive_blob[offset+0x04, 4].to_s
end