c547e84fa7
According to the Ruby style guide, %w{} collections for arrays of single
words are preferred. They're easier to type, and if you want a quick
grep, they're easier to search.
This change converts all Payloads to this format if there is more than
one payload to choose from.
It also alphabetizes the payloads, so the order can be more predictable,
and for long sets, easier to scan with eyeballs.
See:
https://github.com/bbatsov/ruby-style-guide#collections
103 lines
2.9 KiB
Ruby
103 lines
2.9 KiB
Ruby
##
|
|
# ## This file is part of the Metasploit Framework and may be subject to
|
|
# redistribution and commercial restrictions. Please see the Metasploit
|
|
# web site for more information on licensing and terms of use.
|
|
# http://metasploit.com/
|
|
##
|
|
|
|
require 'msf/core'
|
|
require 'rex'
|
|
|
|
class Metasploit3 < Msf::Post
|
|
|
|
def initialize(info={})
|
|
super( update_info( info,
|
|
'Name' => 'Multi Gather Ping Sweep',
|
|
'Description' => %q{ Performs IPv4 ping sweep using the OS included ping command.},
|
|
'License' => MSF_LICENSE,
|
|
'Author' => [ 'Carlos Perez <carlos_perez[at]darkoperator.com>'],
|
|
'Platform' => %w{ bsd linux osx solaris win },
|
|
'SessionTypes' => [ 'meterpreter', 'shell' ]
|
|
))
|
|
register_options(
|
|
[
|
|
|
|
OptAddressRange.new('RHOSTS', [true, 'IP Range to perform ping sweep against.']),
|
|
|
|
], self.class)
|
|
end
|
|
|
|
# Run Method for when run command is issued
|
|
def run
|
|
iprange = datastore['RHOSTS']
|
|
print_status("Performing ping sweep for IP range #{iprange}")
|
|
iplst = []
|
|
begin
|
|
ipadd = Rex::Socket::RangeWalker.new(iprange)
|
|
numip = ipadd.num_ips
|
|
while (iplst.length < numip)
|
|
ipa = ipadd.next_ip
|
|
if (not ipa)
|
|
break
|
|
end
|
|
iplst << ipa
|
|
end
|
|
if session.type =~ /shell/
|
|
# Only one thread possible when shell
|
|
thread_num = 1
|
|
# Use the shell platform for selecting the command
|
|
platform = session.platform
|
|
else
|
|
# When in Meterpreter the safest thread number is 10
|
|
thread_num = 10
|
|
# For Meterpreter use the sysinfo OS since java Meterpreter returns java as platform
|
|
platform = session.sys.config.sysinfo['OS']
|
|
end
|
|
|
|
platform = session.platform
|
|
|
|
case platform
|
|
when /win/i
|
|
count = " -n 1 "
|
|
cmd = "ping"
|
|
when /solaris/i
|
|
cmd = "/usr/sbin/ping"
|
|
else
|
|
count = " -n -c 1 -W 2 "
|
|
cmd = "ping"
|
|
end
|
|
|
|
ip_found = []
|
|
|
|
while(not iplst.nil? and not iplst.empty?)
|
|
a = []
|
|
1.upto(thread_num) do
|
|
a << framework.threads.spawn("Module(#{self.refname})", false, iplst.shift) do |ip_add|
|
|
next if ip_add.nil?
|
|
if platform =~ /solaris/i
|
|
r = cmd_exec(cmd, "-n #{ip_add} 1")
|
|
else
|
|
r = cmd_exec(cmd, count + ip_add)
|
|
end
|
|
if r =~ /(TTL|Alive)/i
|
|
print_status "\t#{ip_add} host found"
|
|
ip_found << ip_add
|
|
else
|
|
vprint_status("\t#{ip_add} host not found")
|
|
end
|
|
|
|
end
|
|
end
|
|
a.map {|x| x.join }
|
|
end
|
|
rescue Rex::TimeoutError, Rex::Post::Meterpreter::RequestError
|
|
rescue ::Exception => e
|
|
print_status("The following Error was encountered: #{e.class} #{e}")
|
|
end
|
|
|
|
ip_found.each do |ip|
|
|
report_host(:host => ip)
|
|
end
|
|
end
|
|
end
|