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

Adds a fingerprint for Nagios web UI

This commit is contained in:
nnposter
2016-10-31 01:53:59 +00:00
parent 32f998c9f5
commit dd3b9f3d81

View File

@@ -297,6 +297,30 @@ table.insert(fingerprints, {
end end
}) })
table.insert(fingerprints, {
-- Version 3.2.3
name = "Nagios",
category = "web",
paths = {
{path = "/"},
{path = "/nagios/"}
},
target_check = function (host, port, path, response)
return http_auth_realm(response) == "Nagios Access"
end,
login_combos = {
{username = "nagiosadmin", password = "nagios"},
{username = "nagiosadmin", password = "nagiosadmin"},
-- IBM PurePower Integrated Manager
{username = "nagiosadmin", password = "PASSW0RD"},
-- CactiEZ
{username = "nagiosadmin", password = "CactiEZ"}
},
login_check = function (host, port, path, user, pass)
return try_http_basic_login(host, port, path, user, pass, false)
end
})
table.insert(fingerprints, { table.insert(fingerprints, {
-- Version 4.1.31, 6.0.24, 7.0.54 -- Version 4.1.31, 6.0.24, 7.0.54
name = "Apache Tomcat", name = "Apache Tomcat",