Hacktoberfest 2026:维护者为十月标记出来的 issue,仍然开放、适合新手。 浏览 Hacktoberfest issue

Keystore Password and CIFS Credentials Plaintext Exposure via SSH Command Logging in KVM CA Provisioning and Baremetal PXE

未关闭
#13,297 0 条评论 0 个 reaction 已指派 0 人 在 GitHub 查看

还没有人认领这个 Issue。

评估

难度
4/5
预计耗时
3-5 天
新手友好度
48/100
Issue 类型
缺陷
描述清晰度
基本清楚
活跃度
冷清
技术栈
java, python

调研方向

从 SSHCmdHelper.java 开始,跟踪 sshExecuteCmdOneShot(),然后检查 CAManagerImpl.java 和 BaremetalPingPxeResource.java 中的命令构造和失败处理。使用 verification_test.py 和 control-masked_output.py 重现日志记录行为。完成的标准是 keystore 和 CIFS 凭据不出现在调试日志和 PXE 失败响应中。

由索引模型根据 Issue 内容生成。

描述

component:logging hardening type:technical-debt
Advisory Details

Title: Keystore Password and CIFS Credentials Plaintext Exposure via SSH Command Logging in KVM CA Provisioning and Baremetal PXE

Description:

Summary

A critical sensitive information disclosure vulnerability (CWE-532 / CWE-209) exists in the Apache CloudStack Management Server due to flawed, position-dependent, and incomplete sanitization of SSH command logs. Highly sensitive credentials—specifically, dynamically-generated 16-character KVM keystore passwords and administrator-configured CIFS/Samba storage credentials—are logged in plaintext into the Management Server debug log files. Furthermore, during PXE command failures, the plaintext CIFS password is returned directly in the REST API error payload to the client.


Details

The core command-logging desensitization mechanism in SSHCmdHelper.java employs a naive split-token sanitization method to prevent credentials from entering debug logs:

LOGGER.debug("Executing cmd: " + cmd.split(KeyStoreUtils.KS_FILENAME)[0]);

Here, KeyStoreUtils.KS_FILENAME is the hardcoded string "cloud.jks". This sanitization model assumes that any sensitive parameter in the command string will always follow the "cloud.jks" token. This design fails under two distinct reachable paths in the codebase:

1. Core KVM Host CA Certificate Provisioning (CAManagerImpl.java)

During forced agent certificate updates via the provisionCertificate admin API, the certificate import shell command is generated as follows:

        final SetupCertificateCommand certificateCommand = new SetupCertificateCommand(certificate);
        final SSHCmdHelper.SSHCmdResult setupCertResult = SSHCmdHelper.sshExecuteCmdWithResult(sshConnection,
                String.format("sudo /usr/share/cloudstack-common/scripts/util/%s " +
                              "/etc/cloudstack/agent/agent.properties %s " +
                              "/etc/cloudstack/agent/%s %s " +
                              ...
                        KeyStoreUtils.KS_IMPORT_SCRIPT,
                        keystorePassword,                // <-- Positional parameter before KS_FILENAME
                        KeyStoreUtils.KS_FILENAME,
                        KeyStoreUtils.SSH_MODE,
                        ...));

Because the dynamic plaintext keystorePassword is positioned before "cloud.jks", cmd.split("cloud.jks")[0] evaluates to a string that still contains the plaintext password, causing it to be written directly into the debug logs.

2. Baremetal PXE Template Operations (BaremetalPingPxeResource.java)

When setting up or backing up baremetal PXE resources, helper scripts like prepare_tftp_bootfile.py are executed via SSH with the CIFS storage server password (_cifsPassword) passed as an argument:

            String script =
                String.format("python /usr/bin/prepare_tftp_bootfile.py restore %1$s %2$s %3$s %4$s %5$s %6$s %7$s %8$s %9$s %10$s %11$s", _tftpDir, cmd.getMac(),
                    _storageServer, _share, _dir, cmd.getTemplate(), _cifsUserName, _cifsPassword, cmd.getIp(), cmd.getNetMask(), cmd.getGateWay());

Because these command strings do not contain the "cloud.jks" token, the naive split operation evaluates to the entire original command, fully exposing the _cifsPassword in the logs. Furthermore, if the command fails, the exception returned to the caller (PreparePxeServerAnswer or Answer) appends the raw command containing the password, propagating it back in the REST API payload to the administrator.


PoC
Prerequisites
  • A deployed instance of the CloudStack Management Server.
  • API Key and Secret Key for an administrator account.
  • A KVM host or Baremetal PXE server configured in the workspace.
Reproduction Steps
  1. Download the isolated container database and helper environment config from: docker-compose.yml
  2. Download the active integration verification test script from: verification_test.py
  3. Download the baseline control test script from: control-masked_output.py
  4. Start the laboratory background services:
    docker compose up -d
    
  5. Execute the verification test to demonstrate the plaintext credential logging:
    python3 verification_test.py
    
  6. Execute the control test to verify that the split mechanism functions correctly under baseline conditions (i.e., when cloud.jks precedes the password):
    python3 control-masked_output.py
    

Log of Evidence
=========================================================================
[*] Running Issue-cloudstack-12029 Keystore Password Exposure Verification
=========================================================================
[*] Stage 1: Attempting to connect to running CloudStack Management Server...
[!] CloudStack Management Server is offline (Expected in isolated environment).
[*] Switching to Academic/Logical Code-Path Verification...

--- Flow 1: CA Certificate Provisioning ---
Original constructed command:
  sudo /usr/share/cloudstack-common/scripts/util/keystore-cert-import /etc/cloudstack/agent/agent.properties SecretRandomPassword123! /etc/cloudstack/agent/cloud.jks ssh /etc/cloudstack/agent/cloud.crt "CERT_DATA"
Logged command after split(KS_FILENAME)[0]:
  sudo /usr/share/cloudstack-common/scripts/util/keystore-cert-import /etc/cloudstack/agent/agent.properties SecretRandomPassword123! /etc/cloudstack/agent/
🔴 [DEFECT-CONFIRMED] Plaintext password is fully exposed in Flow 1 log output!

--- Flow 2: Baremetal PXE template preparation ---
Original constructed command:
  python /usr/bin/prepare_tftp_bootfile.py restore /var/lib/tftpboot 00:11:22:33:44:55 192.168.1.100 share_name /tftp_dir template_name admin_user CifsSecretPassword999! 192.168.1.101 255.255.255.0 192.168.1.254
Logged command after split(KS_FILENAME)[0]:
  python /usr/bin/prepare_tftp_bootfile.py restore /var/lib/tftpboot 00:11:22:33:44:55 192.168.1.100 share_name /tftp_dir template_name admin_user CifsSecretPassword999! 192.168.1.101 255.255.255.0 192.168.1.254
🔴 [DEFECT-CONFIRMED] Plaintext CIFS password is fully exposed in Flow 2 log output!

=========================================================================
RESULT: DEFECT-CONFIRMED (TRUE POSITIVE)
=========================================================================
=========================================================================
[*] Running Issue-cloudstack-12029 Control Group Test: Masked Output Baseline
=========================================================================
Control group command (cloud.jks placed before password):
  sudo /usr/share/cloudstack-common/scripts/util/keystore-cert-setup /etc/cloudstack/agent/agent.properties /etc/cloudstack/agent/cloud.jks SecretRandomPassword123! 365 /etc/cloudstack/agent/cloud.csr
Logged command after split(KS_FILENAME)[0]:
  sudo /usr/share/cloudstack-common/scripts/util/keystore-cert-setup /etc/cloudstack/agent/agent.properties /etc/cloudstack/agent/

--- Control Group Verification ---
🟢 [CONTROL-SUCCESS] Plaintext password is successfully masked/omitted from the log!
The security mechanism functions correctly under normal/baseline conditions.
=========================================================================

Impact
  • Vulnerability Type: CWE-532 (Insertion of Sensitive Information into Log File) / CWE-209 (Generation of Error Message Containing Sensitive Information)
  • Compromised Assets: KVM host CA keystore private keys, administrative CIFS/Samba storage credentials.
  • Severity Impact: High. Exposure of keystore passwords allows remote actors with system read access to decrypt agent TLS private keys and compromise hypervisor agent communication (e.g. performing MITM and executing arbitrary VM manipulation commands). Exposure of CIFS credentials gives complete read-write access to private cloud system template repositories on the corporate network.

Affected products
  • Ecosystem: maven
  • Package name: org.apache.cloudstack:cloudstack
  • Affected versions: <= 4.22.1.0 (up to unreleased pre-release state on the main branch)
  • 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:N

Weaknesses
  • CWE: CWE-532: Insertion of Sensitive Information into Log File
  • CWE: CWE-209: Generation of Error Message Containing Sensitive Information

Occurrences
Permalink Description
utils/src/main/java/com/cloud/utils/ssh/SSHCmdHelper.java#L167 Naive command sanitization using cmd.split(KeyStoreUtils.KS_FILENAME)[0] in sshExecuteCmdOneShot().
utils/src/main/java/com/cloud/utils/ssh/SSHCmdHelper.java#L230 Naive command sanitization in the standard output/error logging statement in sshExecuteCmdOneShot().
server/src/main/java/org/apache/cloudstack/ca/CAManagerImpl.java#L278-L294 Certificate import command creation in provisionCertificateViaSsh(), positioning keystorePassword before the split-token.
plugins/hypervisors/baremetal/src/main/java/com/cloud/baremetal/networkservice/BaremetalPingPxeResource.java#L155-L160 Construction and execution of Baremetal PXE TFTP restore command passing _cifsPassword without split-token and returning it in answer payload on failure.
plugins/hypervisors/baremetal/src/main/java/com/cloud/baremetal/networkservice/BaremetalPingPxeResource.java#L184-L189 Construction and execution of Baremetal PXE TFTP backup command passing _cifsPassword without split-token and returning it in answer payload on failure.
主要语言
Java
星标
3.1k
派生
1.4k
平均合并
6 天 20 小时
30 天内合并 PR
27

贡献指南

打开贡献指南

从这里开始

  1. 先读完整个 Issue,再读项目的贡献指南。
  2. 在 Issue 下留言说明你要接手 —— 这能避免两个人做同样的事。
  3. Fork 仓库,在一个分支上完成修改。
  4. 提交 Pull Request,并在描述里引用这个 Issue 编号。

apache/cloudstack 的其他 Issue

查看 apache/cloudstack 的全部 Issue

相似的 Issue

更多 Java Issue

把新 issue 发到你的邮箱

精选适合新手参与的 GitHub issue 摘要。