mirror of
https://github.com/nmap/nmap.git
synced 2026-06-26 03:03:55 +00:00
Adds apache axis2 login signature.
This commit is contained in:
parent
6a8a10794f
commit
deded46038
1 changed files with 14 additions and 0 deletions
|
|
@ -87,6 +87,20 @@ table.insert(fingerprints, {
|
|||
return try_http_basic_login(host, port, path, user, pass)
|
||||
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
|
||||
---
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue