Files
metasploit-gs/scripts/meterpreter/multiscript.rb
T

73 lines
1.8 KiB
Ruby
Raw Normal View History

2009-10-26 15:14:28 +00:00
# $Id$
# $Revision$
#Meterpreter script for running multiple scripts on a Meterpreter Session
#Provided by Carlos Perez at carlos_perez[at]darkoperator[dot]com
#Verion: 0.2
################## Variable Declarations ##################
session = client
2010-05-03 17:13:09 +00:00
# Setting Argument
@@exec_opts = Rex::Parser::Arguments.new(
2010-10-08 18:35:43 +00:00
"-h" => [ false,"Help menu." ],
"-cl" => [ true,"Collection of scripts to execute. Each script command must be enclosed in double quotes and separated by a semicolon."],
"-rc" => [ true,"Text file with list of commands, one per line."]
)
#Setting Argument variables
commands = ""
script = []
help = 0
################## Function Declarations ##################
# Function for running a list of scripts stored in a array
def script_exec(session,scrptlst)
print_status("Running script List ...")
scrptlst.each_line do |scrpt|
2010-10-08 18:35:43 +00:00
next if scrpt.strip.length < 1
next if scrpt[0,1] == "#"
begin
script_components = scrpt.split
2010-03-08 03:15:57 +00:00
script = script_components.shift
script_args = script_components
print_status "\trunning script #{scrpt.chomp}"
session.execute_script(script, script_args)
2010-10-08 18:35:43 +00:00
rescue ::Exception => e
print_error("Error: #{e.class} #{e}")
print_error("Error in script: #{scrpt}")
end
end
end
def usage
print_line("Multi Script Execution Meterpreter Script ")
2009-11-05 00:38:05 +00:00
print_line(@@exec_opts.usage)
end
################## Main ##################
@@exec_opts.parse(args) do |opt, idx, val|
2010-03-08 03:15:57 +00:00
case opt
2010-08-03 01:13:58 +00:00
when "-cl"
2010-03-08 03:15:57 +00:00
commands = val.gsub(/;/,"\n")
when "-rc"
2010-03-08 03:15:57 +00:00
script = val
if not ::File.exists?(script)
raise "Script List File does not exists!"
else
2010-10-08 18:35:43 +00:00
::File.open(script, "rb").each_line do |line|
2010-03-08 03:15:57 +00:00
commands << line
end
end
2010-03-08 03:15:57 +00:00
when "-h"
help = 1
end
end
2010-10-08 18:35:43 +00:00
2010-05-03 17:13:09 +00:00
if args.length == 0 or help == 1
usage
else
print_status("Running Multiscript script.....")
script_exec(session,commands)
end