1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-22 07:29:01 +00:00

Adds apache axis2 login signature.

This commit is contained in:
paulino
2011-07-15 23:43:10 +00:00
parent 6a8a10794f
commit deded46038

View File

@@ -87,6 +87,20 @@ table.insert(fingerprints, {
return try_http_basic_login(host, port, path, user, pass) return try_http_basic_login(host, port, path, user, pass)
end end
}) })
table.insert(fingerprints, {
name = "Apache Axis2",
category = "web",
paths = {
{path = "/axis2/axis2-admin/"}
},
login_combos = {
{username = "admin", password = "axis2"}
},
login_check = function (host, port, path, user, pass)
return try_http_post_login(host, port, path, "login", "Invalid auth credentials!", {submit="+Login+", userName=user, password=pass})
end
})
--- ---
--ROUTERS --ROUTERS
--- ---