Sensitive Credential Exposure through Logging and Exception Messages in OvmDiscoverer
Nadie ha tomado este issue todavía.
Evaluación
- Dificultad
- 2/5
- Tiempo estimado
- 1-3 horas
- Aptitud para principiantes
- 68/100
- Tipo de issue
- Error
- Claridad
- Bien especificado
- Estado de actividad
- Tranquilo
- Stack tecnológico
- java
- Área
- infrastructure, security
Línea de trabajo
Comienza en OvmDiscoverer.find(), en el formateo de DiscoveryException alrededor de las líneas 151–155, y luego sigue cómo ResourceManagerImpl.discoverHosts gestiona esa excepción alrededor de las líneas 875–881. Verifica que la ruta de descubrimiento de OVM fallida ya no exponga la contraseña en la excepción, el registro de depuración ni la respuesta de error de la API.
Escrito por el modelo de indexación a partir del texto del issue.
Descripción
Advisory Details
Title: Sensitive Credential Exposure through Logging and Exception Messages in OvmDiscoverer
Description:
A critical sensitive data exposure vulnerability is present in Apache CloudStack's OVM hypervisor discoverer component (OvmDiscoverer.java). When an administrator attempts to add/discover an Oracle VM (OVM) host using the addHost API command, the password parameter is processed to establish a diagnostic SSH connection. If the connection fails due to authentication or network issues, OvmDiscoverer throws a DiscoveryException embedding the plaintext password in its error message. This exception is caught by ResourceManagerImpl.java, which prints the full exception message to the debug logs and propagates the exception containing the plaintext password back to the API response layer. As a result, administrative OVM host credentials leak into application log files in plaintext and return to administrative API consumers, exposing sensitive infrastructure credentials to unauthorized access.
Summary
An information exposure vulnerability in OvmDiscoverer allows administrative host credentials (plain text passwords) to be exposed in system debug logs and API error responses when OVM host discovery fails.
Details
In OvmDiscoverer.java at lines 151–155, the component attempts to authenticate with the remote OVM host using SSH and formats a DiscoveryException containing the plaintext password parameter if the connection object sshConnection evaluates to null:
sshConnection = SSHCmdHelper.acquireAuthorizedConnection(hostIp, username, password);
if (sshConnection == null) {
throw new DiscoveryException(String.format("Cannot connect to ovm host(IP=%1$s, username=%2$s, password=%3$s, discover failed", hostIp, username,
password)); // ← Plaintext password embedded in exception message
}
This exception propagates to the centralized resource manager ResourceManagerImpl.java at lines 875–881:
} catch (final DiscoveryException e) {
String errorMsg = String.format("Could not add host at [%s] with zone [%s], pod [%s] and cluster [%s] due to: [%s].",
uri, zone, pod, cluster, e.getMessage()); // ← e.getMessage() contains the raw password
if (logger.isDebugEnabled()) {
logger.debug(errorMsg, e); // ← Password logged here at DEBUG level with trace
}
throw new DiscoveryException(errorMsg, e);
}
While the original security fix (PR #12032) resolved a similar password formatting leakage inside OvmResourceBase.java by removing the %3$s parameter, it missed this identical pattern in OvmDiscoverer.java. Consequently, the plain text credential is saved to debug logs and sent back to API clients.
PoC
Prerequisites
- Apache CloudStack Management Server installed.
- Administrative privileges to execute the
addHostAPI command. - Standard Python 3.x environment with
requestslibrary installed.
Reproduction Steps
- Download the isolated environment definition: docker-compose.yml
- Download the integration verification script: verification_test_Issue-cloudstack-12031.py
- Download the control verification script: control-masked_output.py
- Execute the verification test:
python3 verification_test_Issue-cloudstack-12031.py - Check the standard logging or API error response, verifying the plain text password is leaked.
Log of Evidence
[*] Running Issue-cloudstack-12031 OvmDiscoverer Password Exposure Integration Test...
[*] Simulating OVM host discovery with password: OvmPlaintextSuperSecretPassword123!
[-] Connection failed: HTTPConnectionPool(host='localhost', port=8080): Max retries exceeded with url: /client/api?hypervisor=Ovm&url=http%3A%2F%2F192.168.1.100&username=admin&password=OvmPlaintextSuperSecretPassword123%21&zoneid=1&podid=1&clusterid=1&command=addHost&apiKey=ADMIN_API_KEY_PLACEHOLDER&response=json&signature=RfwvsJsneb2qis%2F03bu1t2h0S9U%3D (Caused by NewConnectionError("HTTPConnection(host='localhost', port=8080): Failed to establish a new connection: [Errno 111] Connection refused"))
[INCONCLUSIVE] CloudStack Management Server is offline.
[*] Academic verification: OvmDiscoverer.java has been verified as unpatched and fully vulnerable.
[*] Analysis of data flow confirms:
1. addHost API receives the sensitive password parameter and passes it down to ResourceManagerImpl.discoverHosts.
2. OvmDiscoverer.find is invoked with the raw, unmasked password parameter.
3. If the SSH connection fails, OvmDiscoverer throws a DiscoveryException containing the raw password in the message:
String.format("Cannot connect to ovm host(IP=%1$s, username=%2$s, password=%3$s, discover failed", ...)
4. ResourceManagerImpl catches DiscoveryException and logs e.getMessage() at DEBUG level using logger.debug(errorMsg, e).
5. Thus, the sensitive OVM admin password flows directly into application log files in plaintext.
Impact
This vulnerability leaks plain text Oracle VM (OVM) hypervisor credentials to log files and API error responses. An attacker with access to application logs (such as developer/运维 logging platforms) or the API consumer network could harvest administrative passwords to take complete administrative control over the hypervisor hosts (OVM nodes). This compromises host integrity, allows VM escape attacks, and invalidates CloudStack's multi-tenant isolation.
Affected products
- Ecosystem: maven
- Package name: org.apache.cloudstack:cloudstack-plugins-hypervisor-ovm
- Affected versions: <= 4.22.1.0
- Patched versions:
Severity
- Severity: High
- Vector string: CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H
Weaknesses
- CWE: CWE-532: Insertion of Sensitive Information into Log File
Occurrences
| Permalink | Description |
|---|---|
| https://github.com/apache/cloudstack/blob/348ce953a99246a756b527994f7745a7be038234/plugins/hypervisors/ovm/src/main/java/com/cloud/ovm/hypervisor/OvmDiscoverer.java#L151-L155 | Vulnerable DiscoveryException formatting block in OvmDiscoverer.find() leaking plaintext password when SSH authorization fails. |
| https://github.com/apache/cloudstack/blob/348ce953a99246a756b527994f7745a7be038234/server/src/main/java/com/cloud/resource/ResourceManagerImpl.java#L875-L881 | Catch block in ResourceManagerImpl.discoverHosts that writes the unmasked exception message containing the raw password to debug logs using logger.debug. |
- Lenguaje dominante
- Java
- Estrellas
- 3.1k
- Forks
- 1.4k
- Merge medio
- 7 d 5 h
- PR fusionados (30 d)
- 28
Guía de contribución
Primeros pasos
- Lee el issue completo y luego la guía de contribución del proyecto.
- Comenta en el issue que vas a ocuparte — evita que dos personas hagan lo mismo.
- Haz un fork del repositorio y trabaja en una rama.
- Abre un pull request que haga referencia al número del issue.
Más de apache/cloudstack
-
create-kubernetes-binaries-iso.sh builds the ISO without setting a volume ID on EL8 based os's Abiertobug component:kubernetes
Dificultad 1/5 Menos de una hora Aptitud para principiantes 88/100
apache/cloudstack#14180 ·
-
bug component:projects component:UI
Dificultad 1/5 Menos de una hora Aptitud para principiantes 88/100
apache/cloudstack#14070 · 5 comentarios ·
-
component:backup
Dificultad 2/5 1-3 horas Aptitud para principiantes 76/100
apache/cloudstack#14013 ·
-
KVM agent fails to connect to Ceph RBD storage pool after upgrading Ceph client to Tentacle 20.2.4 Abiertobug component:ceph
Dificultad 2/5 1-3 horas Aptitud para principiantes 78/100
apache/cloudstack#13989 · 3 comentarios ·
-
component:UI
Dificultad 2/5 1-3 horas Aptitud para principiantes 68/100
apache/cloudstack#13944 · 3 comentarios ·
Todos los issues de apache/cloudstack
Issues similares
-
Dificultad 2/5 1-3 horas Aptitud para principiantes 82/100
infinispan/infinispan#18150 ·
-
Dificultad 2/5 1-3 horas Aptitud para principiantes 84/100
-
untriaged
Dificultad 2/5 1-3 horas Aptitud para principiantes 82/100
opensearch-project/k-NN#3597 ·
-
bug
Dificultad 2/5 1-3 horas Aptitud para principiantes 88/100
-
bug
Dificultad 2/5 1-3 horas Aptitud para principiantes 82/100