Files
metasploit-gs/lib/msf/base/simple/exploit.rb
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

253 lines
6.6 KiB
Ruby
Raw Normal View History

# -*- coding: binary -*-
module Msf
module Simple
###
#
# A simplified exploit wrapper.
#
###
module Exploit
include Module
2013-08-30 16:28:33 -05:00
#
2005-11-15 15:29:56 +00:00
# Wraps the exploitation process in a simple single method. The options
# hash can have the following values passed in it:
#
# Encoder
#
# The encoder module that should be used.
#
# Payload
#
# The payload module name that should be used.
#
# Target
#
# The selected target index.
#
# Nop
#
# The NOP generator that should be used in preference.
#
# OptionStr
#
# A string of comma separated option values that should be imported into
# the datastore.
#
2007-02-24 21:42:13 +00:00
# Options
2006-02-11 16:01:23 +00:00
#
# A hash of values to be imported directly into the datastore.
#
2005-11-15 15:29:56 +00:00
# LocalInput
#
# The local input handle that data can be read in from.
#
# LocalOutput
#
# The local output through which data can be displayed.
#
# RunAsJob
#
# Whether or not the exploit should be run in the context of a background
# job.
#
def self.exploit_simple(oexploit, opts, &block)
exploit = oexploit.replicant
# Trap and print errors here (makes them UI-independent)
begin
# Clone the module to prevent changes to the original instance
Msf::Simple::Framework.simplify_module(exploit)
yield(exploit) if block_given?
2013-08-30 16:28:33 -05:00
# Import options from the OptionStr or Option hash.
exploit._import_extra_options(opts)
opts['Payload'] ||= exploit.datastore['Payload']
2013-08-30 16:28:33 -05:00
unless opts['Quiet']
exploit.init_ui(opts['LocalInput'] || exploit.user_input, opts['LocalOutput'] || exploit.user_output)
else
exploit.init_ui(nil, nil)
end
# Make sure parameters are valid.
if (opts['Payload'] == nil)
raise MissingPayloadError, 'A payload has not been selected.', caller
end
2013-08-30 16:28:33 -05:00
# Verify the options
exploit.options.validate(exploit.datastore)
2013-08-30 16:28:33 -05:00
# Start it up
2024-01-16 22:35:15 +00:00
driver = Msf::ExploitDriver.new(exploit.framework)
2013-08-30 16:28:33 -05:00
# Keep the handler of driver running if exploiting multiple targets.
driver.keep_handler = true if opts['multi']
2018-09-25 11:28:59 +08:00
# Initialize the driver instance
driver.exploit = exploit
2012-12-05 12:30:55 -06:00
driver.payload = exploit.framework.payloads.create(opts['Payload'])
2013-08-30 16:28:33 -05:00
# Set the force wait for session flag if the caller requested force
# blocking. This is so that passive exploits can be blocked on from
# things like the cli.
driver.force_wait_for_session = true if (opts['ForceBlocking'] == true)
2013-08-30 16:28:33 -05:00
# Was the payload valid?
if (driver.payload == nil)
raise MissingPayloadError,
"You specified an invalid payload: #{opts['Payload']}", caller
end
2013-08-30 16:28:33 -05:00
# Use the supplied encoder, if any. If one was not specified, then
# nil will be assigned causing the exploit to default to picking the
# best encoder.
exploit.datastore['ENCODER'] = opts['Encoder'] if opts['Encoder']
2013-08-30 16:28:33 -05:00
2018-04-20 18:21:58 -05:00
# Use the supplied NOP generator, if any. If one was not specified, then
# nil will be assigned causing the exploit to default to picking a
# compatible NOP generator.
exploit.datastore['NOP'] = opts['Nop'] if opts['Nop']
# Force the payload to share the exploit's datastore
driver.payload.share_datastore(driver.exploit.datastore)
2013-08-30 16:28:33 -05:00
# Verify the payload options
driver.payload.options.validate(driver.payload.datastore)
2013-08-30 16:28:33 -05:00
# Set the target and then work some magic to derive index
exploit.datastore['TARGET'] = opts['Target'] if opts['Target']
target_idx = exploit.target_index
2013-08-30 16:28:33 -05:00
if (target_idx == nil or target_idx < 0)
raise MissingTargetError,
"You must select a target.", caller
end
2013-08-30 16:28:33 -05:00
driver.target_idx = target_idx
2013-08-30 16:28:33 -05:00
# Set the payload and exploit's subscriber values
unless opts['Quiet']
driver.payload.init_ui(opts['LocalInput'] || exploit.user_input, opts['LocalOutput'] || exploit.user_output)
else
driver.payload.init_ui(nil, nil)
end
2013-08-30 16:28:33 -05:00
if (opts['RunAsJob'])
driver.use_job = true
end
2013-08-30 16:28:33 -05:00
# Let's rock this party
driver.run
2013-08-30 16:28:33 -05:00
# Save the job identifier this exploit is running as
exploit.job_id = driver.job_id
2013-08-30 16:28:33 -05:00
# Propagate this back to the caller for console mgmt
2013-03-06 14:52:32 -06:00
oexploit.job_id = exploit.job_id
rescue ::Interrupt
2010-03-26 01:18:10 +00:00
exploit.error = $!
raise $!
2021-06-03 11:43:09 +01:00
rescue ::Msf::OptionValidateError => e
exploit.error = e
::Msf::Ui::Formatter::OptionValidateError.print_error(exploit, e)
return false
rescue ::Exception => e
2010-03-26 01:18:10 +00:00
exploit.error = e
exploit.print_error("Exploit failed: #{e}")
elog("Exploit failed (#{exploit.refname})", error: e)
end
2013-08-30 16:28:33 -05:00
2010-07-21 15:14:54 +00:00
return driver.session if driver
nil
end
2013-08-30 16:28:33 -05:00
#
2005-11-15 15:11:43 +00:00
# Calls the class method.
#
2012-06-15 14:25:47 -05:00
def exploit_simple(opts, &block)
Msf::Simple::Exploit.exploit_simple(self, opts, &block)
end
2013-08-30 16:28:33 -05:00
2023-11-14 19:28:33 +00:00
alias run_simple exploit_simple
2007-03-17 19:39:30 +00:00
#
# Initiates a check, setting up the exploit to be used. The following
# options can be specified:
#
# LocalInput
#
# The local input handle that data can be read in from.
#
# LocalOutput
#
# The local output through which data can be displayed.
#
2020-03-13 10:28:11 +00:00
def self.check_simple(mod, opts, job_listener: Msf::Simple::NoopJobListener.instance)
Msf::Simple::Framework.simplify_module(mod)
2019-10-29 12:45:09 -05:00
mod._import_extra_options(opts)
2007-03-17 19:39:30 +00:00
if opts['LocalInput']
mod.init_ui(opts['LocalInput'], opts['LocalOutput'])
end
2013-08-30 16:28:33 -05:00
unless mod.has_check?
# Bail out early if the module doesn't have check
2022-03-23 13:05:42 +00:00
raise ::NotImplementedError.new(Msf::Exploit::CheckCode::Unsupported.message)
end
2020-07-20 11:09:46 -05:00
2007-03-17 19:39:30 +00:00
# Validate the option container state so that options will
# be normalized
mod.validate
2013-08-30 16:28:33 -05:00
2019-10-29 12:45:09 -05:00
run_uuid = Rex::Text.rand_text_alphanumeric(24)
2020-03-11 17:06:37 +00:00
job_listener.waiting run_uuid
ctx = [mod, run_uuid, job_listener]
2019-10-29 12:45:09 -05:00
if opts['RunAsJob']
mod.job_id = mod.framework.jobs.start_bg_job(
2020-03-24 09:56:30 -05:00
"Exploit: #{mod.refname} check",
2019-10-29 12:45:09 -05:00
ctx,
Proc.new { |ctx_| self.job_check_proc(ctx_) },
Proc.new { |ctx_| nil }
)
[run_uuid, mod.job_id]
else
self.job_check_proc(ctx)
end
2007-03-17 19:39:30 +00:00
end
2013-08-30 16:28:33 -05:00
2007-03-17 19:39:30 +00:00
#
# Calls the class method.
#
def check_simple(opts)
Msf::Simple::Exploit.check_simple(self, opts)
2007-03-17 19:39:30 +00:00
end
2019-10-29 12:45:09 -05:00
protected
def self.job_check_proc(ctx)
mod = ctx[0]
run_uuid = ctx[1]
2020-03-11 17:06:37 +00:00
job_listener = ctx[2]
2019-10-29 12:45:09 -05:00
begin
2020-03-11 17:06:37 +00:00
job_listener.start run_uuid
2020-03-02 18:58:50 +00:00
mod.setup
2020-07-20 11:09:46 -05:00
result = mod.check
2020-03-11 17:06:37 +00:00
job_listener.completed(run_uuid, result, mod)
2019-10-29 12:45:09 -05:00
rescue => e
2020-03-11 17:06:37 +00:00
job_listener.failed(run_uuid, e, mod)
2019-10-29 12:45:09 -05:00
mod.handle_exception e
ensure
mod.cleanup
2019-10-29 12:45:09 -05:00
end
return result
end
end
end
end