Class: Rex::Proto::NTLM::Base::Int16LE

Inherits:
Field
  • Object
show all
Defined in:
lib/rex/proto/ntlm/base.rb

Instance Attribute Summary

Attributes inherited from Field

#active, #value

Instance Method Summary collapse

Methods inherited from Field

#size

Constructor Details

#initialize(opt) ⇒ Int16LE

Returns a new instance of Int16LE.



98
99
100
101
# File 'lib/rex/proto/ntlm/base.rb', line 98

def initialize(opt)
  super(opt)
  @size = 2
end

Instance Method Details

#parse(str, offset = 0) ⇒ Object



103
104
105
106
107
108
109
110
# File 'lib/rex/proto/ntlm/base.rb', line 103

def parse(str, offset=0)
  if @active and str.size >= offset + @size
    @value = str[offset, @size].unpack("v")[0]
    @size
  else
    0
  end
end

#serializeObject



112
113
114
# File 'lib/rex/proto/ntlm/base.rb', line 112

def serialize
  [@value].pack("v")
end