mirror of
https://github.com/rapid7/metasploit-framework
synced 2024-11-05 14:57:30 +01:00
c210260845
[#46491831] Comments at the start of the file with ## caused YARD to think the comment was documenting the require call. By removing the ##, the warning disappeared. I did not determine what is special about ## in file comments.
39 lines
977 B
Ruby
39 lines
977 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
|
|
require 'msf/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'
|
|
|
|
# Persistent Storage
|
|
require 'msf/base/persistent_storage'
|
|
|
|
# Utilities
|
|
require 'msf/util'
|
|
|