Class: Rex::Proto::NTLM::Base::Int64LE

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) ⇒ Int64LE

Returns a new instance of Int64LE.



143
144
145
146
# File 'lib/rex/proto/ntlm/base.rb', line 143

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

Instance Method Details

#parse(str, offset = 0) ⇒ Object



148
149
150
151
152
153
154
155
156
# File 'lib/rex/proto/ntlm/base.rb', line 148

def parse(str, offset=0)
	if @active and str.size >= offset + @size
		d, u = str.slice(offset, @size).unpack("V2")
		@value = (u * 0x100000000 + d)
		@size
	else
		0
	end
end

#serializeObject



158
159
160
# File 'lib/rex/proto/ntlm/base.rb', line 158

def serialize
	[@value & 0x00000000ffffffff, @value >> 32].pack("V2") if @active
end