1
mirror of https://github.com/rapid7/metasploit-framework synced 2024-09-25 10:48:31 +02:00
metasploit-framework/lib/msf/base.rb
2020-12-07 10:31:45 +00:00

39 lines
993 B
Ruby

# -*- coding: binary -*-
#
# 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
# Configuration
require 'msf/base/config'
require 'msf/base/logging'
# Simple wrapper
require 'msf/base/simple'
# Sessions
require 'msf/base/sessions/command_shell'
require 'msf/base/sessions/tty'
# Serialization
require 'msf/base/serializer/readable_text'
require 'msf/base/serializer/json'
# Persistent Storage
require 'msf/base/persistent_storage'
# Utilities
require 'msf/util'