1
mirror of https://github.com/rapid7/metasploit-framework synced 2024-11-12 11:52:01 +01:00
metasploit-framework/lib/msf/core.rb
Matt Miller 9c3919d9df moved data types around
git-svn-id: file:///home/svn/incoming/trunk@2572 4d416f70-5f16-0410-b530-b9f4589650da
2005-06-05 00:03:23 +00:00

34 lines
734 B
Ruby

###
#
# framework-core
# --------------
#
# The core library provides all of the means by which to interact
# with the framework insofar as maniuplating encoders, nops,
# payloads, exploits, recon, and sessions.
#
###
# framework-core depends on Rex
require 'Rex'
# General
require 'Msf/Core/Constants'
require 'Msf/Core/Exceptions'
require 'Msf/Core/EventDispatcher'
require 'Msf/Core/DataStore'
require 'Msf/Core/OptionContainer'
# Framework context and core classes
require 'Msf/Core/ModuleManager'
require 'Msf/Core/SessionManager'
require 'Msf/Core/Session'
require 'Msf/Core/Framework'
# Modules
require 'Msf/Core/Module'
require 'Msf/Core/Encoder'
require 'Msf/Core/Exploit'
require 'Msf/Core/Nop'
require 'Msf/Core/Recon'