![]() System : Linux absol.cf 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /usr/share/nmap/scripts/ |
Upload File : |
local geoip = require "geoip" local io = require "io" local stdnse = require "stdnse" local table = require "table" description = [[ This script queries the Nmap registry for the GPS coordinates of targets stored by previous geolocation scripts and produces a KML file of points representing the targets. ]] --- -- @usage -- nmap -sn -Pn --script ip-geolocation-geoplugin,ip-geolocation-map-kml --script-args ip-geolocation-map-kml.map_path=map.kml <target> -- -- @output -- | ip-geolocation-map-kml: -- |_ The map has been saved at 'map.kml'. -- -- @args ip-geolocation-map-kml.map_path (REQUIRED) -- -- @see ip-geolocation-geoplugin.nse -- @see ip-geolocation-ipinfodb.nse -- @see ip-geolocation-map-bing.nse -- @see ip-geolocation-map-google.nse -- @see ip-geolocation-maxmind.nse author = "Mak Kolybabi <mak@kolybabi.com>" license = "Same as Nmap--See https://nmap.org/book/man-legal.html" categories = {"safe"} local render = function(path) local kml = {'<?xml version="1.0" encoding="UTF-8"?>\n<kml xmlns="http://www.opengis.net/kml/2.2">\n <Document>'} for ip, coords in pairs(geoip.get_all_by_ip()) do table.insert(kml, ([[ <Placemark> <name>%s</name> <Point> <coordinates>%s,%s</coordinates> </Point> </Placemark>]]):format(ip, coords["longitude"], coords["latitude"]) ) end table.insert(kml, ' </Document>\n</kml>\n') kml = table.concat(kml, "\n") local f = io.open(path, "w") if not f then return false, ("Failed to open file '%s'."):format(path) end if not f:write(kml) then return false, ("Failed to write file '%s'."):format(path) end f:close() return true, ("The map has been saved at '%s'."):format(path) end local parse_args = function() local map_path = stdnse.get_script_args(SCRIPT_NAME .. '.map_path') if not map_path then return false, "Need to specify a path for the map." end return true, map_path end postrule = function() -- Only run if a previous script has registered geolocation data. return not geoip.empty() end action = function() local output = stdnse.output_table() -- Parse and sanity check the command line arguments. local status, path = parse_args() if not status then output.ERROR = path return output, output.ERROR end -- Render the map. local status, msg = render(path) if not status then output.ERROR = msg return output, output.ERROR end return msg end