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

CVE-2025-62588

Published: 2025-10-21 20:20:55
Last Modified: 2025-10-23 16:01:21

Description

Vulnerability in the Oracle VM VirtualBox product of Oracle Virtualization (component: Core). Supported versions that are affected are 7.1.12 and 7.2.2. Easily exploitable vulnerability allows high privileged attacker with logon to the infrastructure where Oracle VM VirtualBox executes to compromise Oracle VM VirtualBox. While the vulnerability is in Oracle VM VirtualBox, attacks may significantly impact additional products (scope change). Successful attacks of this vulnerability can result in takeover of Oracle VM VirtualBox. CVSS 3.1 Base Score 8.2 (Confidentiality, Integrity and Availability impacts). CVSS Vector: (CVSS:3.1/AV:L/AC:L/PR:H/UI:N/S:C/C:H/I:H/A:H).

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:oracle:vm_virtualbox:7.1.12:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:a:oracle:vm_virtualbox:7.2.2:*:*:*:*:*:*:* - VULNERABLE
Oracle VM VirtualBox < 7.1.12
Oracle VM VirtualBox < 7.2.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-62588 PoC - Oracle VM VirtualBox Core Component Vulnerability # Note: This is a conceptual PoC based on publicly available vulnerability information. # Actual exploitation requires specific conditions and Oracle VM VirtualBox environment. import subprocess import os import sys def check_environment(): """Check if running in Oracle VM VirtualBox environment""" try: # Check for VirtualBox guest additions result = subprocess.run( ['lsmod'], capture_output=True, text=True ) if 'vboxguest' in result.stdout or 'vboxsf' in result.stdout: print("[+] VirtualBox guest environment detected") return True except Exception as e: print(f"[-] Environment check failed: {e}") return False def check_privileges(): """Verify high privilege requirements (PR:H)""" if os.geteuid() == 0: print("[+] Running with root privileges") return True else: print("[-] Requires high privileged account") return False def exploit_core_vulnerability(): """ Conceptual exploit for CVE-2025-62588 Targets Oracle VM VirtualBox Core component Requires: Local access + High privileges (PR:H) """ if not check_environment(): print("[-] Target environment not suitable") sys.exit(1) if not check_privileges(): print("[-] Insufficient privileges") sys.exit(1) # The actual exploitation involves manipulating VirtualBox Core # component operations to achieve privilege escalation or VM escape # Specific technical details are withheld for security reasons print("[!] PoC execution requires specific VirtualBox version (7.1.12 or 7.2.2)") print("[!] Refer to Oracle CPU Oct 2025 advisory for patch information") print("[+] Conceptual demonstration complete") if __name__ == "__main__": exploit_core_vulnerability()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62588", "sourceIdentifier": "[email protected]", "published": "2025-10-21T20:20:55.117", "lastModified": "2025-10-23T16:01:21.203", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Vulnerability in the Oracle VM VirtualBox product of Oracle Virtualization (component: Core). Supported versions that are affected are 7.1.12 and 7.2.2. Easily exploitable vulnerability allows high privileged attacker with logon to the infrastructure where Oracle VM VirtualBox executes to compromise Oracle VM VirtualBox. While the vulnerability is in Oracle VM VirtualBox, attacks may significantly impact additional products (scope change). Successful attacks of this vulnerability can result in takeover of Oracle VM VirtualBox. CVSS 3.1 Base Score 8.2 (Confidentiality, Integrity and Availability impacts). CVSS Vector: (CVSS:3.1/AV:L/AC:L/PR:H/UI:N/S:C/C:H/I:H/A:H)."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:H/UI:N/S:C/C:H/I:H/A:H", "baseScore": 8.2, "baseSeverity": "HIGH", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "HIGH", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 1.5, "impactScore": 6.0}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-267"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:oracle:vm_virtualbox:7.1.12:*:*:*:*:*:*:*", "matchCriteriaId": "D0846C94-6984-4E7F-9670-E5238AA8CA5F"}, {"vulnerable": true, "criteria": "cpe:2.3:a:oracle:vm_virtualbox:7.2.2:*:*:*:*:*:*:*", "matchCriteriaId": "613B5554-B57C-4AF9-AC10-E96278C44FC4"}]}]}], "references": [{"url": "https://www.oracle.com/security-alerts/cpuoct2025.html", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}