Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
rapid7
GitHub Repository: rapid7/metasploit-framework
Path: blob/master/lib/rex/proto/ntlm/exceptions.rb
21545 views
1
# -*- coding: binary -*-
2
module Rex
3
module Proto
4
module NTLM
5
module Exceptions
6
7
class NTLMMissingChallenge < ::RuntimeError
8
def to_s
9
"Unable to complete, no challenge key found"
10
end
11
end
12
13
end
14
end
15
end
16
end
17
18
19