Tidy up redundant comments

This commit is contained in:
dwelch-r7 2021-01-18 12:18:36 +00:00
parent a19575d6bb
commit 122acc4285
3 changed files with 0 additions and 33 deletions

View File

@ -1,29 +1,4 @@
# -*- 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
# Simple wrapper
# Sessions
# Serialization
# Persistent Storage
# Utilities
require 'msf/util'

View File

@ -58,10 +58,6 @@ module Console::CommandDispatcher
return @msf_loaded unless @msf_loaded.nil?
# if we get here we must not have initialized yet
if client.framework
# We have a framework instance so the msf libraries should be
# available. Load up the ones we're going to use
end
@msf_loaded = !!(client.framework)
@msf_loaded
end

View File

@ -75,10 +75,6 @@ module Console::CommandDispatcher
return @msf_loaded unless @msf_loaded.nil?
# if we get here we must not have initialized yet
if client.framework
# We have a framework instance so the msf libraries should be
# available. Load up the ones we're going to use
end
@msf_loaded = !!(client.framework)
@msf_loaded
end