Skip to content

Stored Cross-Site Scripting (XSS) bypass in saveNode endpoint

High
btopro published GHSA-g2g8-95qg-v35h May 21, 2026

Package

npm @haxtheweb/haxcms-nodejs (npm)

Affected versions

<=26.0.0

Patched versions

26.0.1
haxcms-php (haxtheweb)
<= 26.0.0
26.0.2

Description

Summary

HaxCMS is affected by a stored cross-site scripting (XSS) vulnerability in the /system/api/saveNode endpoint. An authenticated user with a permission to edit pages can bypass the HTML sanitizer by injecting an event handler attribute without whitespace before the attribute name.

For example, the sanitizer misses:

<a href="#"onclick="alert('kn1ph')">click me</a>

The important bypass is:

href="#"onclick=

The payload is stored in the generated page files and executes when a user clicks the injected link.

Details

The issue is caused by regex-based HTML sanitization that expects whitespace before event handler attributes. Because the sanitizer expects a pattern like:

href="#" onclick="..."

it fails to remove an event handler when it is written without whitespace:

href="#"onclick="..."

Browsers still parse onclick as a valid event handler attribute, so the JavaScript executes when the element is clicked.

Affected endpoint:

POST /system/api/saveNode?site_token=[VALID_SITE_TOKEN]

Affected parameter:

node.body

PoC

  1. Log in to HaxCMS and edit any existing page.

  2. Capture the page save request in Burp Suite:

POST /system/api/saveNode?site_token=[VALID_SITE_TOKEN]
  1. In the JSON request body, modify only the node.body value.

Change:

"body":"...existing page content...\n"

To:

"body":"...existing page content...\n<a href=\"#\"onclick=\"alert('kn1ph')\">click me</a>\n"
  1. Forward the request.

  2. Open the edited page and click click me.

Result:

The javascript will execute and the alert will pop up.

I also confirmed the payload is stored in the generated page files, including index.html.

Impact

An authenticated user with permissions to edit the page can inject stored JavaScript into the page content. If a privileged user interacts with the injected element while authenticated, the attacker controlled JavaScript will execute in that user’s browser.

Based on local testing, the XSS can access browser-exposed HaxCMS data such as localStorage.jwt and window.appSettings, including API paths and tokens available to the authenticated user.

This may allow an attacker to perform actions as the victim within the limits of the exposed tokens and the victim’s permissions and possibly chain more vulnerabilities.

Severity

High

CVSS overall score

This score calculates overall vulnerability severity from 0 to 10 and is based on the Common Vulnerability Scoring System (CVSS).
/ 10

CVSS v3 base metrics

Attack vector
Network
Attack complexity
Low
Privileges required
Low
User interaction
Required
Scope
Changed
Confidentiality
High
Integrity
High
Availability
None

CVSS v3 base metrics

Attack vector: More severe the more the remote (logically and physically) an attacker can be in order to exploit the vulnerability.
Attack complexity: More severe for the least complex attacks.
Privileges required: More severe if no privileges are required.
User interaction: More severe when no user interaction is required.
Scope: More severe when a scope change occurs, e.g. one vulnerable component impacts resources in components beyond its security scope.
Confidentiality: More severe when loss of data confidentiality is highest, measuring the level of data access available to an unauthorized user.
Integrity: More severe when loss of data integrity is the highest, measuring the consequence of data modification possible by an unauthorized user.
Availability: More severe when the loss of impacted component availability is highest.
CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:H/I:H/A:N

CVE ID

CVE-2026-48527

Weaknesses

Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting')

The product does not neutralize or incorrectly neutralizes user-controllable input before it is placed in output that is used as a web page that is served to other users. Learn more on MITRE.

Credits