Parent

Methods

Class/Module Index [+]

Quicksearch

Rex::Proto::NTLM::Message::Type3

Public Class Methods

create(arg, opt ={}) click to toggle source
# File lib/rex/proto/ntlm/message.rb, line 294
def create(arg, opt ={})
        t = new
        t.lm_response = arg[:lm_response]
        t.ntlm_response = arg[:ntlm_response]
        t.domain = arg[:domain]
        t.user = arg[:user]
        t.workstation = arg[:workstation]

        if arg[:session_key]
                t.enable(:session_key)
                t.session_key = arg[session_key]
        end
        if arg[:flag]
                t.enable(:session_key)
                t.enable(:flag)
                t.flag = arg[:flag]
        end
        t
end
parse(str) click to toggle source
# File lib/rex/proto/ntlm/message.rb, line 288
def parse(str)
        t = new
        t.parse(str)
        t
end

[Validate]

Generated with the Darkfish Rdoc Generator 2.