1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-24 08:29:04 +00:00

Disable Robtex NSE scripts due to API changes.

This commit is contained in:
dmiller
2020-02-18 19:21:46 +00:00
parent 2f0e104f02
commit ad2eb47aa7
3 changed files with 26 additions and 0 deletions

View File

@@ -5,6 +5,8 @@ local slaxml = require "slaxml"
description = [[
Discovers hostnames that resolve to the target's IP address by querying the online Robtex service at http://ip.robtex.com/.
*TEMPORARILY DISABLED* due to changes in Robtex's API. See https://www.robtex.com/api/
]]
---
@@ -31,6 +33,12 @@ categories = {
}
prerule = function() return true end
action = function()
return "*TEMPORARILY DISABLED* due to changes in Robtex's API. See https://www.robtex.com/api/"
end
--[[
--- Scrape domains sharing target host ip from robtex website
--
-- //section[@id="x_shared"]//li//text()
@@ -74,3 +82,4 @@ action = function (host)
end
return output_tab
end
]]--