mirror of
https://github.com/rapid7/metasploit-framework
synced 2024-10-29 18:07:27 +01:00
b863978028
MSP-11368 MSP-11143 Remove fastlib as it slows down the code loading process. From the previous commit, the mean loading for `METASPLOIT_FRAMEWORK_PROFILE=true msfconsole -q -x exit` was 27.9530±0.3485 seconds (N=10). The mean after removal of fastlib was 17.9820±0.6497 seconds (N=10). This means an average 35.67% reduction in boot time.
71 lines
2.2 KiB
Ruby
Executable File
71 lines
2.2 KiB
Ruby
Executable File
#!/usr/bin/env ruby
|
|
#
|
|
# $Id$
|
|
# $Revision$
|
|
#
|
|
# This small utility will display all the informations about the network interfaces
|
|
# that one can use under Windows with modules using pcaprub and having the INTERFACE option (ex: arp_poisonning, arp_sweep, ...).
|
|
# To use th interface option under Windows use the Index value displayed by this tool (ex: "SET INTERFACE 1")
|
|
#
|
|
#
|
|
|
|
msfbase = __FILE__
|
|
while File.symlink?(msfbase)
|
|
msfbase = File.expand_path(File.readlink(msfbase), File.dirname(msfbase))
|
|
end
|
|
|
|
$:.unshift(File.expand_path(File.join(File.dirname(msfbase), '..', 'lib')))
|
|
require 'msfenv'
|
|
|
|
$:.unshift(ENV['MSF_LOCAL_LIB']) if ENV['MSF_LOCAL_LIB']
|
|
|
|
|
|
if RUBY_PLATFORM == "i386-mingw32"
|
|
begin
|
|
require 'network_interface'
|
|
rescue ::Exception => e
|
|
$stderr.puts "Error: NetworkInterface is not installed..."
|
|
exit
|
|
end
|
|
|
|
unless (
|
|
NetworkInterface.respond_to?(:interfaces) and
|
|
NetworkInterface.respond_to?(:addresses) and
|
|
NetworkInterface.respond_to?(:interface_info)
|
|
)
|
|
$stderr.puts "Error: Looks like you are not running the latest version of NetworkInterface"
|
|
exit
|
|
end
|
|
found = false
|
|
NetworkInterface.interfaces.each_with_index do |iface, i|
|
|
found = true
|
|
detail = NetworkInterface.interface_info(iface)
|
|
addr = NetworkInterface.addresses(iface)
|
|
puts "#" * 70
|
|
puts ""
|
|
puts "INDEX : " + (i + 1).to_s
|
|
puts "NAME : " + detail["name"]
|
|
puts "DESCRIPTION : " + detail["description"]
|
|
puts "GUID : " + detail["guid"]
|
|
if addr[NetworkInterface::AF_LINK][0]['addr']
|
|
puts "MAC ADDRESS : #{addr[NetworkInterface::AF_LINK][0]['addr']}"
|
|
else
|
|
puts "MAC ADDRESS : NONE"
|
|
end
|
|
if addr[NetworkInterface::AF_INET][0]['addr'] and addr[NetworkInterface::AF_INET][0]['netmask']
|
|
puts "IP ADDRESS : #{addr[NetworkInterface::AF_INET][0]['addr']}/#{addr[NetworkInterface::AF_INET][0]['netmask']}"
|
|
else
|
|
puts "IP ADDRESS : NONE"
|
|
end
|
|
puts ""
|
|
end
|
|
if found
|
|
puts "#" * 70
|
|
else
|
|
$stderr.puts "Error, no network interfaces have been detected"
|
|
end
|
|
else
|
|
$stderr.puts "Error: This script is useful only on Windows, under other OS just use the built-in commands (ifconfig, ip link show, ...)"
|
|
exit
|
|
end
|