CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
rapid7

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

GitHub Repository: rapid7/metasploit-framework
Path: blob/master/lib/rex/proto/ntlm/exceptions.rb
Views: 11704
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