mirror of
https://github.com/rapid7/metasploit-framework
synced 2024-11-12 11:52:01 +01:00
0a6bb91cb9
git-svn-id: file:///home/svn/framework3/trunk@7276 4d416f70-5f16-0410-b530-b9f4589650da
31 lines
812 B
Ruby
31 lines
812 B
Ruby
# $Id$
|
|
|
|
# Meterpreter script that display local subnets
|
|
# Provided by Nicob <nicob [at] nicob.net>
|
|
# Ripped from http://blog.metasploit.com/2006/10/meterpreter-scripts-and-msrt.html
|
|
|
|
@@exec_opts = Rex::Parser::Arguments.new(
|
|
"-h" => [ false, "Help menu." ]
|
|
)
|
|
def usage
|
|
print_line("Get a list of local subnets based on the host's routes")
|
|
print_line("USAGE: run get_local_subnets")
|
|
print_line(@@exec_opts.usage)
|
|
raise Rex::Script::Completed
|
|
end
|
|
|
|
@@exec_opts.parse(args) { |opt, idx, val|
|
|
case opt
|
|
when "-h"
|
|
usage
|
|
end
|
|
}
|
|
|
|
client.net.config.each_route { |route|
|
|
# Remove multicast and loopback interfaces
|
|
next if route.subnet =~ /^(224\.|127\.)/
|
|
next if route.subnet == '0.0.0.0'
|
|
next if route.netmask == '255.255.255.255'
|
|
print_line("Local subnet: #{route.subnet}/#{route.netmask}")
|
|
}
|