1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-20 14:39:02 +00:00

Adds a fingerprint for Zoom X5 wireless router

This commit is contained in:
nnposter
2016-10-31 01:57:26 +00:00
parent ca93d986c0
commit 3529ee25eb

View File

@@ -593,6 +593,30 @@ table.insert(fingerprints, {
end
})
table.insert(fingerprints, {
-- Version 1.0.1-00 on model 5554
name = "Zoom ADSL X5",
category = "routers",
paths = {
{path = "/"}
},
target_check = function (host, port, path, response)
return response.status == 301
and response.header["server"]
and response.header["server"]:find("^Nucleus/%d+%.")
and response.header["location"]
and response.header["location"]:find("/hag/pages/home%.htm$")
end,
login_combos = {
{username = "admin", password = "zoomadsl"}
},
login_check = function (host, port, path, user, pass)
return try_http_basic_login(host, port,
url.absolute(path, "hag/pages/home.htm"),
user, pass, false)
end
})
table.insert(fingerprints, {
-- Version 2.3, 2.4 on FVS318
name = "Netgear FVS",