Class: Rex::Proto::DRDA::PASSWORD_PARAM

Inherits:
Struct
  • Object
show all
Defined in:
lib/rex/proto/drda/packet.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(args = {}) ⇒ PASSWORD_PARAM

Returns a new instance of PASSWORD_PARAM.



194
195
196
197
198
# File 'lib/rex/proto/drda/packet.rb', line 194

def initialize(args={})
	self[:codepoint] = Constants::PASSWORD
	self[:payload] = Rex::Text.to_ebcdic(args[:payload].to_s)
	self[:length] = self[:payload].size + 4
end

Instance Attribute Details

#codepointObject

Returns the value of attribute codepoint

Returns:

  • (Object)

    the current value of codepoint



193
194
195
# File 'lib/rex/proto/drda/packet.rb', line 193

def codepoint
  @codepoint
end

#lengthObject

Returns the value of attribute length

Returns:

  • (Object)

    the current value of length



193
194
195
# File 'lib/rex/proto/drda/packet.rb', line 193

def length
  @length
end

#payloadObject

Returns the value of attribute payload

Returns:

  • (Object)

    the current value of payload



193
194
195
# File 'lib/rex/proto/drda/packet.rb', line 193

def payload
  @payload
end

Instance Method Details

#encode(str) ⇒ Object



199
200
201
# File 'lib/rex/proto/drda/packet.rb', line 199

def encode(str)
	Rex::Text.to_ebcdic(str)
end

#to_sObject



202
203
204
# File 'lib/rex/proto/drda/packet.rb', line 202

def to_s
	self.to_a.pack("nna*")
end