mirror of
https://github.com/nmap/nmap.git
synced 2026-01-29 01:29:22 +00:00
Adds a fingerprint for Netgear FVS VPN firewall
This commit is contained in:
@@ -593,6 +593,28 @@ table.insert(fingerprints, {
|
||||
end
|
||||
})
|
||||
|
||||
table.insert(fingerprints, {
|
||||
-- Version 2.3, 2.4 on FVS318
|
||||
name = "Netgear FVS",
|
||||
category = "routers",
|
||||
paths = {
|
||||
{path = "/"}
|
||||
},
|
||||
target_check = function (host, port, path, response)
|
||||
return response.status == 200
|
||||
and response.header["server"] == "Netgear"
|
||||
and response.body
|
||||
and response.body:lower():find("<frame%s+src%s*=%s*(['\"]?)top.html%1%s")
|
||||
end,
|
||||
login_combos = {
|
||||
{username = "admin", password = "password"}
|
||||
},
|
||||
login_check = function (host, port, path, user, pass)
|
||||
return try_http_basic_login(host, port, url.absolute(path, "top.html"),
|
||||
user, pass, false)
|
||||
end
|
||||
})
|
||||
|
||||
table.insert(fingerprints, {
|
||||
name = "Motorola AP-7532",
|
||||
category = "routers",
|
||||
|
||||
Reference in New Issue
Block a user