A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI for Security
      Leading the Way in AI-Powered Security Solutions
    • Securing AI
      Accelerate AI Adoption with Secure AI Tools, Apps, and Agents.
    • How It Works
      The Singularity XDR Difference
    • Singularity Marketplace
      One-Click Integrations to Unlock the Power of XDR
    • Pricing & Packaging
      Comparisons and Guidance at a Glance
    Data & AI
    • Purple AI
      Accelerate SecOps with Generative AI
    • Singularity Hyperautomation
      Easily Automate Security Processes
    • AI-SIEM
      The AI SIEM for the Autonomous SOC
    • AI Data Pipelines
      Security Data Pipeline for AI SIEM and Data Optimization
    • Singularity Data Lake
      AI-Powered, Unified Data Lake
    • Singularity Data Lake for Log Analytics
      Seamlessly Ingest Data from On-Prem, Cloud or Hybrid Environments
    Endpoint Security
    • Singularity Endpoint
      Autonomous Prevention, Detection, and Response
    • Singularity XDR
      Native & Open Protection, Detection, and Response
    • Singularity RemoteOps Forensics
      Orchestrate Forensics at Scale
    • Singularity Threat Intelligence
      Comprehensive Adversary Intelligence
    • Singularity Vulnerability Management
      Application & OS Vulnerability Management
    • Singularity Identity
      Identity Threat Detection and Response
    Cloud Security
    • Singularity Cloud Security
      Block Attacks with an AI-Powered CNAPP
    • Singularity Cloud Native Security
      Secure Cloud and Development Resources
    • Singularity Cloud Workload Security
      Real-Time Cloud Workload Protection Platform
    • Singularity Cloud Data Security
      AI-Powered Threat Detection for Cloud Storage
    • Singularity Cloud Security Posture Management
      Detect and Remediate Cloud Misconfigurations
    Securing AI
    • Prompt Security
      Secure AI Tools Across Your Enterprise
  • Why SentinelOne?
    Why SentinelOne?
    • Why SentinelOne?
      Cybersecurity Built for What’s Next
    • Our Customers
      Trusted by the World’s Leading Enterprises
    • Industry Recognition
      Tested and Proven by the Experts
    • About Us
      The Industry Leader in Autonomous Cybersecurity
    Compare SentinelOne
    • Arctic Wolf
    • Broadcom
    • CrowdStrike
    • Cybereason
    • Microsoft
    • Palo Alto Networks
    • Sophos
    • Splunk
    • Trellix
    • Trend Micro
    • Wiz
    Verticals
    • Energy
    • Federal Government
    • Finance
    • Healthcare
    • Higher Education
    • K-12 Education
    • Manufacturing
    • Retail
    • State and Local Government
  • Services
    Managed Services
    • Managed Services Overview
      Wayfinder Threat Detection & Response
    • Threat Hunting
      World-Class Expertise and Threat Intelligence
    • Managed Detection & Response
      24/7/365 Expert MDR Across Your Entire Environment
    • Incident Readiness & Response
      DFIR, Breach Readiness, & Compromise Assessments
    Support, Deployment, & Health
    • Technical Account Management
      Customer Success with Personalized Service
    • SentinelOne GO
      Guided Onboarding & Deployment Advisory
    • SentinelOne University
      Live and On-Demand Training
    • Services Overview
      Comprehensive Solutions for Seamless Security Operations
    • SentinelOne Community
      Community Login
  • Partners
    Our Network
    • MSSP Partners
      Succeed Faster with SentinelOne
    • Singularity Marketplace
      Extend the Power of S1 Technology
    • Cyber Risk Partners
      Enlist Pro Response and Advisory Teams
    • Technology Alliances
      Integrated, Enterprise-Scale Solutions
    • SentinelOne for AWS
      Hosted in AWS Regions Around the World
    • Channel Partners
      Deliver the Right Solutions, Together
    • SentinelOne for Google Cloud
      Unified, Autonomous Security Giving Defenders the Advantage at Global Scale
    • Partner Locator
      Your Go-to Source for Our Top Partners in Your Region
    Partner Portal→
  • Resources
    Resource Center
    • Case Studies
    • Data Sheets
    • eBooks
    • Reports
    • Videos
    • Webinars
    • Whitepapers
    • Events
    View All Resources→
    Blog
    • Feature Spotlight
    • For CISO/CIO
    • From the Front Lines
    • Identity
    • Cloud
    • macOS
    • SentinelOne Blog
    Blog→
    Tech Resources
    • SentinelLABS
    • Ransomware Anthology
    • Cybersecurity 101
  • About
    About SentinelOne
    • About SentinelOne
      The Industry Leader in Cybersecurity
    • Investor Relations
      Financial Information & Events
    • SentinelLABS
      Threat Research for the Modern Threat Hunter
    • Careers
      The Latest Job Opportunities
    • Press & News
      Company Announcements
    • Cybersecurity Blog
      The Latest Cybersecurity Threats, News, & More
    • FAQ
      Get Answers to Our Most Frequently Asked Questions
    • DataSet
      The Live Data Platform
    • S Foundation
      Securing a Safer Future for All
    • S Ventures
      Investing in the Next Generation of Security, Data and AI
  • Pricing
Get StartedContact Us
CVE Vulnerability Database
Vulnerability Database/CVE-2026-46395

CVE-2026-46395: HAXcms Information Disclosure Flaw

CVE-2026-46395 is an information disclosure vulnerability in HAXcms that allows attackers to extract the private signing key and forge admin-level JWTs. This post covers the technical details, affected versions, and mitigation.

Published: June 11, 2026

CVE-2026-46395 Overview

HAX CMS contains a cryptographic implementation flaw in its Node.js backend that exposes the system's private signing key to unauthenticated attackers. The hmacBase64() function passes the literal string "0" as the HMAC key instead of the intended key parameter. The function then concatenates the real key (this.privateKey + this.salt) directly onto the HMAC output before base64-encoding the result. A single unauthenticated GET request to /system/api/connectionSettings returns tokens that contain the master signing secret. Attackers decode the response, discard the first 32 bytes, and recover the private key. The PHP backend is not affected. Version 26.0.0 fixes the issue.

Critical Impact

Unauthenticated attackers can extract the master signing key and forge admin-level JSON Web Tokens (JWTs) to obtain full administrative access with a single HTTP request.

Affected Products

  • HAX CMS Node.js backend versions prior to 26.0.0
  • HAXcms instances exposing the /system/api/connectionSettings endpoint
  • Deployments using the Node.js hmacBase64() token generator

Discovery Timeline

  • 2026-06-05 - CVE-2026-46395 published to NVD
  • 2026-06-05 - Last updated in NVD database

Technical Details for CVE-2026-46395

Vulnerability Analysis

The defect resides in the Node.js hmacBase64() function used by HAXcms to generate tokens. Two stacked errors transform an authentication primitive into a key disclosure oracle. First, the function invokes HMAC using the string "0" as the signing secret rather than the parameter passed by callers. Every HAXcms instance therefore computes identical HMACs for identical inputs, breaking the cryptographic property the design assumed.

Second, after computing the HMAC the function concatenates the actual key parameter onto the output. That parameter is this.privateKey + this.salt, the master signing secret of the application. The combined buffer is base64-encoded and returned as the token. Each token has a deterministic structure: 32 bytes of HMAC followed by N bytes of privateKey+salt.

This is an information disclosure flaw classified under [CWE-200]. Recovered key material enables forgery of JWTs with administrator claims, granting full administrative control of the CMS.

Root Cause

The Node.js implementation hardcodes the literal "0" where the key argument should be referenced and appends the real key to the digest output. The PHP backend implements the same function correctly, using the actual key and returning only the hash. The PHP version produces 44-character tokens while the broken Node.js version produces tokens of 139 characters or more, making affected instances trivially fingerprintable.

Attack Vector

The /system/api/connectionSettings endpoint is unauthenticated and returns multiple tokens generated by the flawed function. An attacker issues a single GET request, base64-decodes any returned token, discards the leading 32 bytes of HMAC output, and reads privateKey+salt directly. With the recovered secret the attacker signs JWTs containing admin claims and submits them to authenticated endpoints to obtain administrative access.

No authentication, user interaction, or specialized tooling is required. Exploitation reduces to one HTTP request plus standard base64 decoding. See the GitHub Security Advisory for technical details.

Detection Methods for CVE-2026-46395

Indicators of Compromise

  • Unauthenticated GET requests to /system/api/connectionSettings from external sources
  • Response payloads containing base64url tokens of 139 characters or more from the Node.js backend
  • JWTs accepted by the application that were not issued by the server's normal authentication flow
  • Administrative actions performed by sessions lacking a preceding login event

Detection Strategies

  • Inspect HTTP access logs for requests to /system/api/connectionSettings and correlate with subsequent privileged API calls from the same source
  • Audit issued JWTs for iat and jti values that do not appear in authentication server logs
  • Fingerprint the deployment by token length; tokens of 139+ characters indicate the vulnerable Node.js backend

Monitoring Recommendations

  • Forward HAXcms application and reverse proxy logs to a centralized analytics platform for correlation of unauthenticated endpoint access with admin activity
  • Alert on sudden creation of administrator accounts or configuration changes not preceded by an interactive login
  • Track requests to system and settings endpoints from non-allowlisted networks

How to Mitigate CVE-2026-46395

Immediate Actions Required

  • Upgrade HAX CMS to version 26.0.0 or later, which corrects the hmacBase64() implementation
  • Rotate privateKey and salt values after upgrading, since prior keys must be considered compromised
  • Invalidate all existing JWTs and force re-authentication of administrative users
  • Review audit logs for unauthorized administrative actions since deployment of the affected version

Patch Information

The maintainers released a fix in HAX CMS version 26.0.0. The patch corrects the Node.js hmacBase64() function to use the supplied key parameter and to return only the HMAC digest, matching the behavior of the PHP backend. Full remediation details are available in the GitHub Security Advisory GHSA-6c8g-9hfh-pq5h.

Workarounds

  • Restrict network access to /system/api/connectionSettings via reverse proxy rules or a web application firewall until the upgrade is applied
  • Place the HAXcms Node.js backend behind an authenticated gateway that blocks unauthenticated access to system endpoints
  • If upgrade is not immediately possible, migrate to the PHP backend, which is not affected
bash
# Example reverse proxy rule blocking external access to the vulnerable endpoint
location /system/api/connectionSettings {
    allow 127.0.0.1;
    deny all;
    return 403;
}

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechHax Cms

  • SeverityCRITICAL

  • CVSS Score9.3

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-200
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-46390: HAX CMS Information Disclosure Flaw

  • CVE-2026-46398: HAX CMS Information Disclosure Flaw

  • CVE-2026-35185: HAX CMS Information Disclosure Vulnerability

  • CVE-2026-46396: HAX CMS Stored XSS Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today and into the future.

Try SentinelOne
  • Get Started
  • Get a Demo
  • Product Tour
  • Why SentinelOne
  • Pricing & Packaging
  • FAQ
  • Contact
  • Contact Us
  • Customer Support
  • SentinelOne Status
  • Language
  • Platform
  • Singularity Platform
  • Singularity Endpoint
  • Singularity Cloud
  • Singularity AI-SIEM
  • Singularity Identity
  • Singularity Marketplace
  • Purple AI
  • Services
  • Wayfinder TDR
  • SentinelOne GO
  • Technical Account Management
  • Support Services
  • Verticals
  • Energy
  • Federal Government
  • Finance
  • Healthcare
  • Higher Education
  • K-12 Education
  • Manufacturing
  • Retail
  • State and Local Government
  • Cybersecurity for SMB
  • Resources
  • Blog
  • Labs
  • Case Studies
  • Videos
  • Product Tours
  • Events
  • Cybersecurity 101
  • eBooks
  • Webinars
  • Whitepapers
  • Press
  • News
  • Ransomware Anthology
  • Company
  • About Us
  • Our Customers
  • Careers
  • Partners
  • Legal & Compliance
  • Security & Compliance
  • Investor Relations
  • S Foundation
  • S Ventures

©2026 SentinelOne, All Rights Reserved.

Privacy Notice Terms of Use

English