mirror of
https://github.com/nmap/nmap.git
synced 2026-06-25 18:48:19 +00:00
Generalizes the fingerprint for Adobe LiveCycle Management Console
This commit is contained in:
parent
df4ef0cb91
commit
0aefe63c2b
1 changed files with 5 additions and 2 deletions
|
|
@ -173,16 +173,19 @@ table.insert(fingerprints, {
|
|||
})
|
||||
|
||||
table.insert(fingerprints, {
|
||||
name = "Adobe LiveCycle Management Console",
|
||||
name = "Apache Felix OSGi Management Console",
|
||||
category = "web",
|
||||
paths = {
|
||||
{path = "/system/console"},
|
||||
{path = "/lc/system/console"}
|
||||
},
|
||||
target_check = function (host, port, path, response)
|
||||
return http_auth_realm(response) == "OSGi Management Console"
|
||||
end,
|
||||
login_combos = {
|
||||
{username = "admin", password = "admin"}
|
||||
{username = "admin", password = "admin"},
|
||||
{username = "karaf", password = "karaf"},
|
||||
{username = "smx", password = "smx"}
|
||||
},
|
||||
login_check = function (host, port, path, user, pass)
|
||||
return try_http_basic_login(host, port, path, user, pass, false)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue