We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4acb29a commit 2ec87d1Copy full SHA for 2ec87d1
lib/msf/core/exploit/ntlm.rb
@@ -5,11 +5,11 @@
5
require 'rex/proto/ntlm/message'
6
require 'rex/proto/ntlm/utils'
7
8
-NTLM_CONST = ::Rex::Proto::NTLM::Constants
9
-NTLM_CRYPT = ::Rex::Proto::NTLM::Crypt
10
-NTLM_UTILS = ::Rex::Proto::NTLM::Utils
11
-NTLM_BASE = ::Rex::Proto::NTLM::Base
12
-NTLM_MESSAGE = ::Rex::Proto::NTLM::Message
+NTLM_CONST ||= ::Rex::Proto::NTLM::Constants
+NTLM_CRYPT ||= ::Rex::Proto::NTLM::Crypt
+NTLM_UTILS ||= ::Rex::Proto::NTLM::Utils
+NTLM_BASE ||= ::Rex::Proto::NTLM::Base
+NTLM_MESSAGE ||= ::Rex::Proto::NTLM::Message
13
14
module Msf
15
0 commit comments