mirror of
https://github.com/nmap/nmap.git
synced 2025-12-20 14:39:02 +00:00
Adds more default credentials for Apache Tomcat
This commit is contained in:
@@ -225,7 +225,8 @@ table.insert(fingerprints, {
|
|||||||
category = "web",
|
category = "web",
|
||||||
paths = {
|
paths = {
|
||||||
{path = "/manager/html/"},
|
{path = "/manager/html/"},
|
||||||
{path = "/tomcat/manager/html/"}
|
{path = "/tomcat/manager/html/"},
|
||||||
|
{path = "/cognos_express/manager/html/"}
|
||||||
},
|
},
|
||||||
target_check = function (host, port, path, response)
|
target_check = function (host, port, path, response)
|
||||||
return http_auth_realm(response) == "Tomcat Manager Application"
|
return http_auth_realm(response) == "Tomcat Manager Application"
|
||||||
@@ -233,10 +234,24 @@ table.insert(fingerprints, {
|
|||||||
login_combos = {
|
login_combos = {
|
||||||
{username = "tomcat", password = "tomcat"},
|
{username = "tomcat", password = "tomcat"},
|
||||||
{username = "admin", password = "admin"},
|
{username = "admin", password = "admin"},
|
||||||
-- http://cve.mitre.org/cgi-bin/cvename.cgi?name=2009-4189
|
-- https://cve.mitre.org/cgi-bin/cvename.cgi?name=2009-3548
|
||||||
|
{username = "admin", password = ""},
|
||||||
|
-- https://github.com/seshendra/vagrant-ubuntu-tomcat7/
|
||||||
|
{username = "admin", password = "tomcat"},
|
||||||
|
-- https://cve.mitre.org/cgi-bin/cvename.cgi?name=2010-4094
|
||||||
|
{username = "ADMIN", password = "ADMIN"},
|
||||||
|
-- https://cve.mitre.org/cgi-bin/cvename.cgi?name=2009-4189
|
||||||
{username = "ovwebusr", password = "OvW*busr1"},
|
{username = "ovwebusr", password = "OvW*busr1"},
|
||||||
-- http://cve.mitre.org/cgi-bin/cvename.cgi?name=2009-4188
|
-- https://cve.mitre.org/cgi-bin/cvename.cgi?name=2009-4188
|
||||||
{username = "j2deployer", password = "j2deployer"}
|
{username = "j2deployer", password = "j2deployer"},
|
||||||
|
-- https://cve.mitre.org/cgi-bin/cvename.cgi?name=2010-0557
|
||||||
|
{username = "cxsdk", password = "kdsxc"},
|
||||||
|
-- XAMPP https://www.apachefriends.org/index.html
|
||||||
|
{username = "xampp", password = "xampp"},
|
||||||
|
-- QLogic QConvergeConsole http://www.qlogic.com/
|
||||||
|
{username = "QCC", password = "QLogic66"},
|
||||||
|
-- HAPI FHIR http://hapifhir.io/
|
||||||
|
{username = "fhir", password = "FHIRDefaultPassword"}
|
||||||
},
|
},
|
||||||
login_check = function (host, port, path, user, pass)
|
login_check = function (host, port, path, user, pass)
|
||||||
return try_http_basic_login(host, port, path, user, pass, false)
|
return try_http_basic_login(host, port, path, user, pass, false)
|
||||||
|
|||||||
Reference in New Issue
Block a user