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

Added few aditional credentials to http-default-accounts fingerprints

This commit is contained in:
aca
2012-06-22 16:06:05 +00:00
parent 98a68b7407
commit ba5a79acdc

View File

@@ -85,7 +85,11 @@ table.insert(fingerprints, {
},
login_combos = {
{username = "tomcat", password = "tomcat"},
{username = "admin", password = "admin"}
{username = "admin", password = "admin"},
-- http://cve.mitre.org/cgi-bin/cvename.cgi?name=2009-4189
{username = "ovwebusr", password = "OvW*busr1"},
-- http://cve.mitre.org/cgi-bin/cvename.cgi?name=2009-4188
{username = "j2deployer", password = "j2deployer"}
},
login_check = function (host, port, path, user, pass)
return try_http_basic_login(host, port, path, user, pass)