Files
metasploit-gs/lib/msf/base.rb
T
Matt Miller 0c287ec339 started working on session wrappers
git-svn-id: file:///home/svn/incoming/trunk@2529 4d416f70-5f16-0410-b530-b9f4589650da
2005-05-27 05:34:15 +00:00

26 lines
772 B
Ruby

###
#
# framework-base
# --------------
#
# The base library provides implementations for some of the default
# sessions, such as Shell, Meterpreter, DispatchNinja, and VNC. These
# sessions are used by modules that come pre-packaged with the default
# module distribution of Metasploit and are depended on by their
# respective payloads.
#
# Beyond providing the default sessions, framework-base also provides
# a wrapper interface to framework-core that makes some of the tasks,
# such as exploitation, into easier to manage functions.
#
###
# framework-base depends on framework-core
require 'Msf/Core'
# Sessions
require 'Msf/Base/Session/CommandShell'
require 'Msf/Base/Session/Meterpreter'
require 'Msf/Base/Session/DispatchNinja'
require 'Msf/Base/Session/Vnc'