mirror of
https://github.com/rapid7/metasploit-framework
synced 2024-11-12 11:52:01 +01:00
21cb3a5c79
git-svn-id: file:///home/svn/framework3/trunk@5920 4d416f70-5f16-0410-b530-b9f4589650da
13 lines
462 B
Ruby
13 lines
462 B
Ruby
|
|
## 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
|
|
|
|
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}")
|
|
}
|