mirror of
https://github.com/nmap/nmap.git
synced 2025-12-17 05:09:00 +00:00
NSE support for Adobe LiveCycle
http-fingerprints and default account additions by rvrsh3ll. Closes #61
This commit is contained in:
@@ -166,6 +166,23 @@ table.insert(fingerprints, {
|
|||||||
end
|
end
|
||||||
})
|
})
|
||||||
|
|
||||||
|
table.insert(fingerprints, {
|
||||||
|
name = "Adobe LiveCycle Management Console",
|
||||||
|
category = "web",
|
||||||
|
paths = {
|
||||||
|
{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"}
|
||||||
|
},
|
||||||
|
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, {
|
||||||
name = "Apache Axis2",
|
name = "Apache Axis2",
|
||||||
category = "web",
|
category = "web",
|
||||||
|
|||||||
@@ -5135,6 +5135,22 @@ table.insert(fingerprints, {
|
|||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
table.insert(fingerprints, {
|
||||||
|
category = 'management',
|
||||||
|
probes = {
|
||||||
|
{
|
||||||
|
path = '/lc/system/console',
|
||||||
|
method = 'HEAD'
|
||||||
|
},
|
||||||
|
},
|
||||||
|
matches = {
|
||||||
|
{
|
||||||
|
match = 'OSGi Management Console',
|
||||||
|
output = 'Adobe LiveCycle Management Console'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
table.insert(fingerprints, {
|
table.insert(fingerprints, {
|
||||||
category = 'management',
|
category = 'management',
|
||||||
probes = {
|
probes = {
|
||||||
|
|||||||
Reference in New Issue
Block a user