CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
rapid7

CoCalc provides the best real-time collaborative environment for Jupyter Notebooks, LaTeX documents, and SageMath, scalable from individual users to large groups and classes!

GitHub Repository: rapid7/metasploit-framework
Path: blob/master/lib/msf.rb
Views: 1903
1
require 'rex/arch'
2
require 'rex/logging'
3
4
include Rex::Arch
5
include Rex::Logging
6
7
module Msf
8
9
LogSource = "core"
10
end
11
12
require 'msf/core/exception' # TODO: temporary require until we can split up the exceptions file and namespace properly
13
require 'msf/core/constants'
14
require 'msf_autoload'
15
16
MsfAutoload.instance
17
18
NTLM_CONST ||= ::Rex::Proto::NTLM::Constants
19
NTLM_CRYPT ||= ::Rex::Proto::NTLM::Crypt
20
NTLM_UTILS ||= ::Rex::Proto::NTLM::Utils
21
NTLM_BASE ||= ::Rex::Proto::NTLM::Base
22
NTLM_MESSAGE ||= ::Rex::Proto::NTLM::Message
23
24