Files
metasploit-gs/lib/msf/base.rb
T
Matt Miller 2f2363d141 it lives, major changes, fixed bugs, exploiting works with the test exploit
git-svn-id: file:///home/svn/incoming/trunk@2763 4d416f70-5f16-0410-b530-b9f4589650da
2005-07-16 07:32:11 +00:00

32 lines
811 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'
# Configuration
require 'msf/base/config'
# Simple wrapper
require 'msf/base/simple'
# Sessions
require 'msf/base/sessions/command_shell'
# Serialization
require 'msf/base/serializer/readable_text'