mirror of
https://github.com/nmap/nmap.git
synced 2025-12-19 05:59:01 +00:00
Cleans up a few fingerprint trivialities
This commit is contained in:
@@ -310,7 +310,7 @@ table.insert(fingerprints, {
|
|||||||
})
|
})
|
||||||
|
|
||||||
table.insert(fingerprints, {
|
table.insert(fingerprints, {
|
||||||
-- Version 3.2.3
|
-- Version 3.2.3, 3.4.4, 4.0.8
|
||||||
name = "Nagios",
|
name = "Nagios",
|
||||||
cpe = "cpe:/a:nagios:nagios",
|
cpe = "cpe:/a:nagios:nagios",
|
||||||
category = "web",
|
category = "web",
|
||||||
@@ -335,7 +335,7 @@ table.insert(fingerprints, {
|
|||||||
})
|
})
|
||||||
|
|
||||||
table.insert(fingerprints, {
|
table.insert(fingerprints, {
|
||||||
-- Version 3.1.1
|
-- Version 3.1.1, 4.0.2, 4.1.2
|
||||||
name = "Grafana",
|
name = "Grafana",
|
||||||
category = "web",
|
category = "web",
|
||||||
paths = {
|
paths = {
|
||||||
@@ -718,7 +718,7 @@ table.insert(fingerprints, {
|
|||||||
|
|
||||||
table.insert(fingerprints, {
|
table.insert(fingerprints, {
|
||||||
-- Version H131-310CTU-C07_R01_4.5.5.27
|
-- Version H131-310CTU-C07_R01_4.5.5.27
|
||||||
name = "NexusLink-5631",
|
name = "Comtrend NexusLink-5631",
|
||||||
category = "routers",
|
category = "routers",
|
||||||
paths = {
|
paths = {
|
||||||
{path = "/"}
|
{path = "/"}
|
||||||
@@ -761,7 +761,8 @@ table.insert(fingerprints, {
|
|||||||
|
|
||||||
table.insert(fingerprints, {
|
table.insert(fingerprints, {
|
||||||
-- Version 2.3, 2.4 on FVS318
|
-- Version 2.3, 2.4 on FVS318
|
||||||
name = "Netgear ProSafe Firewall",
|
name = "Netgear ProSafe Firewall FVS318",
|
||||||
|
cpe = "cpe:/h:netgear:fvs318",
|
||||||
category = "routers",
|
category = "routers",
|
||||||
paths = {
|
paths = {
|
||||||
{path = "/"}
|
{path = "/"}
|
||||||
@@ -782,8 +783,9 @@ table.insert(fingerprints, {
|
|||||||
})
|
})
|
||||||
|
|
||||||
table.insert(fingerprints, {
|
table.insert(fingerprints, {
|
||||||
-- Version 2.00.08 on GS108PEv3
|
-- Version 2.00.03, .05, .07, .08 on GS108Ev3, GS108PEv3
|
||||||
name = "Netgear ProSafe Plus Switch",
|
name = "Netgear ProSafe Plus Switch",
|
||||||
|
cpe = "cpe:/h:netgear:gs108*",
|
||||||
category = "routers",
|
category = "routers",
|
||||||
paths = {
|
paths = {
|
||||||
{path = "/"}
|
{path = "/"}
|
||||||
@@ -930,7 +932,6 @@ table.insert(fingerprints, {
|
|||||||
{username = "admin", password = "setup"}
|
{username = "admin", password = "setup"}
|
||||||
},
|
},
|
||||||
login_check = function (host, port, path, user, pass)
|
login_check = function (host, port, path, user, pass)
|
||||||
-- realm="Management(8)"
|
|
||||||
return try_http_basic_login(host, port,
|
return try_http_basic_login(host, port,
|
||||||
url.absolute(path, "manage/bdy_sys.htm"),
|
url.absolute(path, "manage/bdy_sys.htm"),
|
||||||
user, pass, false)
|
user, pass, false)
|
||||||
@@ -1039,7 +1040,6 @@ table.insert(fingerprints, {
|
|||||||
{username = "dm", password = "web"}
|
{username = "dm", password = "web"}
|
||||||
},
|
},
|
||||||
login_check = function (host, port, path, user, pass)
|
login_check = function (host, port, path, user, pass)
|
||||||
-- realm="WebPage Configuration"
|
|
||||||
return try_http_basic_login(host, port,
|
return try_http_basic_login(host, port,
|
||||||
url.absolute(path, "frmpages/index.html"),
|
url.absolute(path, "frmpages/index.html"),
|
||||||
user, pass, true)
|
user, pass, true)
|
||||||
@@ -1070,7 +1070,6 @@ table.insert(fingerprints, {
|
|||||||
if req.status == 200 then
|
if req.status == 200 then
|
||||||
return (req.body or ""):find('top.render_table("System Page"', 1, true)
|
return (req.body or ""):find('top.render_table("System Page"', 1, true)
|
||||||
end
|
end
|
||||||
-- realm="Menu Configuration"
|
|
||||||
return try_http_basic_login(host, port, lurl, user, pass, true)
|
return try_http_basic_login(host, port, lurl, user, pass, true)
|
||||||
end
|
end
|
||||||
})
|
})
|
||||||
@@ -1096,7 +1095,6 @@ table.insert(fingerprints, {
|
|||||||
{username = "USER", password = "USER"}
|
{username = "USER", password = "USER"}
|
||||||
},
|
},
|
||||||
login_check = function (host, port, path, user, pass)
|
login_check = function (host, port, path, user, pass)
|
||||||
-- realm="Schneider Web"
|
|
||||||
return try_http_basic_login(host, port,
|
return try_http_basic_login(host, port,
|
||||||
url.absolute(path, "secure/system/globaldata.htm?Language=English"),
|
url.absolute(path, "secure/system/globaldata.htm?Language=English"),
|
||||||
user, pass, false)
|
user, pass, false)
|
||||||
@@ -1119,7 +1117,7 @@ table.insert(fingerprints, {
|
|||||||
{username = "admin", password = "password"}
|
{username = "admin", password = "password"}
|
||||||
},
|
},
|
||||||
login_check = function (host, port, path, user, pass)
|
login_check = function (host, port, path, user, pass)
|
||||||
return try_http_basic_login(host, port, path, user, pass)
|
return try_http_basic_login(host, port, path, user, pass, false)
|
||||||
end
|
end
|
||||||
})
|
})
|
||||||
|
|
||||||
@@ -1472,7 +1470,6 @@ table.insert(fingerprints, {
|
|||||||
{username = "root", password = ""}
|
{username = "root", password = ""}
|
||||||
},
|
},
|
||||||
login_check = function (host, port, path, user, pass)
|
login_check = function (host, port, path, user, pass)
|
||||||
-- realm="VMware HTTP server"
|
|
||||||
return try_http_basic_login(host, port,
|
return try_http_basic_login(host, port,
|
||||||
url.absolute(path, "folder?dcPath=ha-datacenter"),
|
url.absolute(path, "folder?dcPath=ha-datacenter"),
|
||||||
user, pass, false)
|
user, pass, false)
|
||||||
|
|||||||
Reference in New Issue
Block a user