Class: RubySMB::Dcerpc::Winreg::EnumValueResponse

Inherits:
BinData::Record
  • Object
show all
Defined in:
lib/ruby_smb/dcerpc/winreg/enum_value_response.rb

Overview

This class represents a BaseRegEnumValue Response Packet as defined in 3.1.5.11 BaseRegEnumValue (Opnum 10)

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#opnumObject (readonly)

Returns the value of attribute opnum.



8
9
10
# File 'lib/ruby_smb/dcerpc/winreg/enum_value_response.rb', line 8

def opnum
  @opnum
end

Instance Method Details

#initialize_instanceObject



20
21
22
23
# File 'lib/ruby_smb/dcerpc/winreg/enum_value_response.rb', line 20

def initialize_instance
  super
  @opnum = REG_ENUM_VALUE
end

#pad_lengthObject

Determines the correct length for the padding in front of

lp_type. It should always force a 4-byte alignment.



27
28
29
30
# File 'lib/ruby_smb/dcerpc/winreg/enum_value_response.rb', line 27

def pad_length
  offset = (lp_value_name.abs_offset + lp_value_name.to_binary_s.length) % 4
  (4 - offset) % 4
end