Class: Rex::Proto::NTLM::Base::String

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(opts) ⇒ String

Returns a new instance of String.



68
69
70
71
# File 'lib/rex/proto/ntlm/base.rb', line 68

def initialize(opts)
  super(opts)
  @size = opts[:size]
end

Instance Method Details

#parse(str, offset = 0) ⇒ Object



73
74
75
76
77
78
79
80
# File 'lib/rex/proto/ntlm/base.rb', line 73

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

#serializeObject



82
83
84
85
86
87
88
# File 'lib/rex/proto/ntlm/base.rb', line 82

def serialize
  if @active
    @value
  else
    ""
  end
end

#value=(val) ⇒ Object



90
91
92
93
94
# File 'lib/rex/proto/ntlm/base.rb', line 90

def value=(val)
  @value = val
  @size = @value.nil? ? 0 : @value.size
  @active = (@size > 0)
end