mirror of
https://github.com/rapid7/metasploit-framework
synced 2024-11-05 14:57:30 +01:00
32 lines
918 B
Ruby
Executable File
32 lines
918 B
Ruby
Executable File
#!/usr/bin/env ruby
|
|
#
|
|
# This tool asks Google for the location of a given set of BSSIDs
|
|
#
|
|
|
|
msfbase = __FILE__
|
|
while File.symlink?(msfbase)
|
|
msfbase = File.expand_path(File.readlink(msfbase), File.dirname(msfbase))
|
|
end
|
|
|
|
$LOAD_PATH.unshift(File.expand_path(File.join(File.dirname(msfbase), '..', '..','lib')))
|
|
require 'rex/google/geolocation'
|
|
require 'optparse'
|
|
|
|
if ARGV.empty?
|
|
$stderr.puts("Usage: #{$PROGRAM_NAME} <mac> [mac] ...")
|
|
$stderr.puts("Ask Google for the location of the given set of BSSIDs")
|
|
$stderr.puts
|
|
$stderr.puts("Example: iwlist sc 2>/dev/null|awk '/Address/{print $5}'|xargs #{$PROGRAM_NAME}")
|
|
$stderr.puts("Example: /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Resources/airport -I|awk '/BSSID/{print $2}'|xargs #{$PROGRAM_NAME}")
|
|
exit(1)
|
|
end
|
|
|
|
g = Rex::Google::Geolocation.new
|
|
ARGV.each do |mac|
|
|
g.add_wlan(mac, nil, -83)
|
|
end
|
|
|
|
g.fetch!
|
|
|
|
puts g, g.google_maps_url
|