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:
@@ -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
|
||||||
---
|
---
|
||||||
|
|||||||
Reference in New Issue
Block a user