CWE-178Weakness · CWE-178

CVE-2026-46392

HIGH · 8.7 CVSS v3.1 Published 2026-06-05
Mitigation only
No fix yet — a mitigation exists. There is no fixed release. A documented workaround reduces exposure in the meantime.
See remediation →
91/100
Remediation priority · Urgent
Remotely reachable

Official description Straight from the sourceThe vendor's or NVD's own wording, published unedited. Authoritative, but often terse — it says what broke, rarely what to do.

NVD · unedited
HAX CMS helps manage microsite universe with PHP or NodeJs backends. Prior to version 26.0.0 of HAX CMS PHP, the `saveFile` endpoint validates upload extensions case-insensitively and writes the filename to disk verbatim, but the `.htaccess` rule that forces `Content-Disposition: attachment` on HTML files is case-sensitive. An HTML file uploaded with an uppercase extension (`.HTML`, `.Html`, `.HTM`) is still served as `text/html` but the forced-download header never applies, so the browser renders it inline and executes any embedded JavaScript in the HAXcms origin. This bypasses the mitigation shipped for CVE-2026-22704. Version 26.0.0 contains a fix.

Technical summary Written by usOur analysis, written from the advisory, the CVSS vector and the affected-version data. It adds context the advisory leaves out, and never invents facts that are not in the source.

dbcve analysis · high confidence

The saveFile endpoint in HAX CMS PHP validates file extensions case-insensitively but writes filenames to disk verbatim, while the .htaccess rule forcing Content-Disposition: attachment on HTML files is case-sensitive. Uploading files with uppercase extensions like .HTML, .HTM, or .Html bypasses the forced-download header, allowing browsers to render the HTML inline and execute embedded JavaScript in the HAXcms origin, bypassing the prior CVE-2026-22704 mitigation.

MitigationUpgrade HAX CMS PHP to version 26.0.0 or later, which contains the fix for case-sensitive extension handling.

Verify against the referenced sources before acting — the references below are authoritative for this CVE, this summary is not.

CVSS breakdown How the score is builtThe industry scoring standard. It rates how the flaw is reached, what it takes to exploit, and what an attacker gains — the score is derived from those, not the other way round.

From the vector
Attack vector
Network
Complexity
Low
Privileges
Low
User interaction
Required
Scope
Changed
Confidentiality
High
Integrity
High
Availability
None

CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:C/C:H/I:H/A:N

Am I affected? How to checkSteps we derive from the advisory and the affected-version data, so you can decide whether this CVE reaches your setup. They are a guide, not a scan — your own configuration is the authority.

dbcve checks

Work through these to decide whether this CVE applies to you.

  1. Identify if HAX CMS PHP is installed
    Look for HAX CMS PHP installation directories or files, typically in web root. Common paths include /haxcms, /cms, or check for haxcms-related PHP files and directories.
    Affected if HAX CMS PHP is present in the environment and the saveFile endpoint is accessible.
  2. Check HAX CMS PHP version
    Locate the version file or header in the HAX CMS installation (often in a version.php, package.json, or similar file at the root of the HAXcms directory). Compare the installed version to the fixed version 26.0.0.
    Affected if The installed version is earlier than 26.0.0.
  3. Verify if saveFile endpoint is accessible
    Check for the presence of the saveFile PHP endpoint in the HAX CMS installation, typically at /api/saveFile or similar endpoint path under the HAXcms directory.
    Affected if The saveFile endpoint exists and is reachable via HTTP/HTTPS.
  4. Inspect uploaded files for uppercase extensions
    Search upload directories within the HAX CMS installation for files with uppercase HTML extensions such as .HTML, .HTM, .Html, .HTM, or other case variants. Common upload paths include /files, /uploads, or media directories.
    Affected if Any files with uppercase .HTML or .HTM extensions exist in the system upload directories.
  5. Check .htaccess for case-sensitive extension rules
    Locate and examine the .htaccess file in the HAX CMS web directory. Look for RewriteCond rules that match file extensions for Content-Disposition: attachment headers, and verify if they handle case variations (check for [NC] flag which indicates case-insensitive matching).
    Affected if The .htaccess rules do NOT include the [NC] flag for HTML extension matching, making them case-sensitive and vulnerable to bypass.

A user is affected if HAX CMS PHP version is below 26.0.0, the saveFile endpoint is accessible, and uppercase HTML file extensions can bypass the .htaccess forced-download rules.

Generated from the published advisory. Verify against your own configuration.

Check your environment

Paste your version and any relevant configuration and it will be compared against the affected criteria above. Do not include secrets or credentials.

AI-assisted, checked against the advisory. Informational, not a guarantee.

Remediation Closing itWhat it takes to close this. Where a vendor fix exists we point at it; where none exists we say so plainly, and can build one. Effort estimates are scoped from the advisory, not from your codebase.

dbcve · scoped
Mitigation available No clean upgrade yet — mitigate in the meantime
Mitigation

Upgrade HAX CMS PHP to version 26.0.0 or later, which contains the fix for case-sensitive extension handling.

Recommended fix High confidence

HAX CMS PHP version 26.0.0 or later

  1. 1. Identify the current version of HAX CMS PHP installation by checking the version file or admin panel.
  2. 2. Create a complete backup of the HAX CMS installation including all files, database, and configuration.
  3. 3. Download HAX CMS PHP version 26.0.0 or later from the official repository (github.com) or your package manager.
  4. 4. Replace the existing HAX CMS files with the new version, preserving configuration files and custom content.
  5. 5. Verify the upgrade was successful by checking the version number in the admin interface.
  6. 6. Test that HTML files with uppercase extensions (.HTML, .Html, .HTM) are now properly handled and receive the Content-Disposition: attachment header.
Caveat Review release notes for any breaking changes between your current version and 26.0.0; test thoroughly in a staging environment before production deployment

Generated from the published advisory — verify against the referenced sources before acting.

Have this fixed Scoped from the published advisory
  • Consultation1.0 h
  • Implementation2.0 h
  • Testing1.0 h
  • Review / QA1.0 h
5.0 hours of engineering $890
Get help mitigating

An estimate, not a bill — we confirm scope with you before any work starts. Need it this week? Rush from $1,424.

Scan for this in your stack

Free · runs locally
dbcve dependency scanner

Check whether your project pulls in CVE-2026-46392 — or any other known-vulnerable package — straight from your lock files. Free and open source; it runs locally and uploads nothing.

References Go to the primary sourcePrimary sources — vendor advisories, patches and trackers. Where our summary and a reference disagree, the reference wins.

Primary sources

Practitioner notes

Contributed

Peer-ranked notes from engineers who’ve handled CVE-2026-46392 in production — separate from our analysis above.

No notes yet

Be the first to add a field note for this CVE — a mitigation you’ve verified, a version caveat, or a link to a working fix. Sign in above to contribute.

What this is

A place for practitioners to share what actually worked: a mitigation you’ve tested, a configuration change, a version- or environment-specific caveat, or a link to a verified patch. The most useful notes rise to the top as peers upvote them, so the signal stays high.

What belongs here
  • Verified mitigations, workarounds, and config changes
  • Version or environment caveats, and links to real fixes
  • No weaponised exploit code, or anything meant to cause harm
  • No spam, self-promotion, credentials, or personal data