Class: Rex::Proto::NTLM::Message::Type1
- Inherits:
-
Object
- Object
- Rex::Proto::NTLM::Message::Type1
- Defined in:
- lib/rex/proto/ntlm/message.rb
Class Method Summary collapse
Instance Method Summary collapse
Class Method Details
.parse(str) ⇒ Object
153 154 155 156 157 |
# File 'lib/rex/proto/ntlm/message.rb', line 153 def parse(str) t = new t.parse(str) t end |
Instance Method Details
#parse(str) ⇒ Object
160 161 162 163 164 165 166 167 168 169 |
# File 'lib/rex/proto/ntlm/message.rb', line 160 def parse(str) super(str) enable(:domain) if has_flag?(:DOMAIN_SUPPLIED) enable(:workstation) if has_flag?(:WORKSTATION_SUPPLIED) super(str) if ( (len = data_edge - head_size) > 0) self.padding = "\0" * len super(str) end end |