The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
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-39911

CVE-2026-39911: Hashgraph Guardian RCE Vulnerability

CVE-2026-39911 is a remote code execution flaw in Hashgraph Guardian that lets authenticated users execute arbitrary code and access sensitive credentials. This article covers technical details, affected versions, and mitigations.

Published: April 9, 2026

CVE-2026-39911 Overview

Hashgraph Guardian through version 3.5.0 contains a critical unsandboxed JavaScript execution vulnerability in the Custom Logic policy block worker. This flaw allows authenticated Standard Registry users to execute arbitrary code by passing user-supplied JavaScript expressions directly to the Node.js Function() constructor without proper isolation or sandboxing.

The vulnerability enables attackers to import native Node.js modules to read arbitrary files from the container filesystem, access process environment variables containing sensitive credentials such as RSA private keys, JWT signing keys, and API tokens, and ultimately forge valid authentication tokens for any user including administrators.

Critical Impact

Authenticated attackers can achieve full remote code execution, exfiltrate sensitive credentials including cryptographic keys, and forge administrator authentication tokens to completely compromise the Hashgraph Guardian instance.

Affected Products

  • Hashgraph Guardian through version 3.5.0
  • Custom Logic policy block worker component
  • Deployments using Standard Registry user authentication

Discovery Timeline

  • 2026-04-09 - CVE CVE-2026-39911 published to NVD
  • 2026-04-09 - Last updated in NVD database

Technical Details for CVE-2026-39911

Vulnerability Analysis

This vulnerability stems from CWE-668 (Exposure of Resource to Wrong Sphere), where the Custom Logic policy block worker in Hashgraph Guardian fails to properly isolate user-supplied JavaScript code. When authenticated Standard Registry users submit JavaScript expressions through the policy block interface, these expressions are passed directly to the Node.js Function() constructor without any sandboxing or isolation mechanisms.

The lack of proper code isolation means that user-supplied code executes with the full privileges of the Node.js process, enabling access to the entire Node.js runtime environment including native modules, the filesystem, and process environment variables. This architectural flaw transforms what should be a limited scripting capability into a full remote code execution vector.

Root Cause

The root cause is the unsafe use of the JavaScript Function() constructor to evaluate user-provided code without implementing proper sandboxing. The Function() constructor creates a new function object from a string, but unlike sandboxed environments such as vm2 or isolated-vm, it does not restrict access to global objects, native modules, or the broader Node.js runtime. This allows malicious code to break out of the intended execution context and access sensitive resources.

Attack Vector

The attack is network-based and requires low privileges (Standard Registry user authentication). An attacker with valid credentials can craft malicious JavaScript payloads that:

  1. Import native Node.js modules such as fs and child_process
  2. Read arbitrary files from the container filesystem including configuration files and credentials
  3. Access process.env to extract sensitive environment variables containing RSA private keys, JWT signing secrets, and API tokens
  4. Use exfiltrated cryptographic keys to forge valid authentication tokens for any user, including administrators
  5. Achieve persistent administrative access to the Hashgraph Guardian instance

The attack requires no user interaction and can be performed remotely over the network by any authenticated Standard Registry user. For detailed technical information, refer to the VulnCheck Security Advisory.

Detection Methods for CVE-2026-39911

Indicators of Compromise

  • Unusual JavaScript code patterns in Custom Logic policy block submissions containing references to require(), process, fs, or child_process
  • Access attempts to sensitive files such as /etc/passwd, configuration files, or credential stores from the Guardian container
  • Unexpected outbound network connections from the Guardian service attempting data exfiltration
  • Authentication token usage patterns indicating forged tokens or unauthorized administrator access

Detection Strategies

  • Monitor Custom Logic policy block submissions for suspicious Node.js module imports and process access patterns
  • Implement application-level logging for all JavaScript code execution within the policy block worker
  • Deploy file integrity monitoring on the Guardian container to detect unauthorized file access
  • Analyze authentication logs for anomalous token patterns or unexpected privilege escalation events

Monitoring Recommendations

  • Enable verbose logging for the Custom Logic policy block worker component
  • Monitor process environment variable access patterns within container workloads
  • Implement network egress monitoring to detect credential exfiltration attempts
  • Review Standard Registry user activities and policy block modifications regularly

How to Mitigate CVE-2026-39911

Immediate Actions Required

  • Upgrade Hashgraph Guardian to a patched version as soon as available
  • Audit all Standard Registry user accounts and remove unnecessary access privileges
  • Review Custom Logic policy blocks for any suspicious or unauthorized JavaScript code
  • Consider temporarily disabling the Custom Logic policy block feature until patching is complete
  • Rotate all sensitive credentials including RSA private keys, JWT signing keys, and API tokens that may have been exposed

Patch Information

The fix for this vulnerability is tracked in GitHub Pull Request #5929. Organizations should monitor this pull request and apply the patch as soon as it is merged and released. The patch is expected to implement proper JavaScript sandboxing to isolate user-supplied code from the Node.js runtime environment.

For additional details on the vulnerability and remediation guidance, consult the VulnCheck Security Advisory.

Workarounds

  • Restrict Standard Registry user access to only trusted personnel until the patch is applied
  • Implement network segmentation to limit the Guardian service's access to sensitive internal resources
  • Deploy Web Application Firewall (WAF) rules to filter potentially malicious JavaScript patterns in policy block submissions
  • Monitor and alert on any Custom Logic policy block modifications in production environments

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechHashgraph

  • SeverityHIGH

  • CVSS Score8.7

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:L/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-668
  • Technical References
  • GitHub Pull Request

  • VulnCheck Security Advisory
  • Latest CVEs
  • CVE-2025-52479: HTTP.jl & URIs.jl CRLF Injection Flaw

  • CVE-2026-31740: Linux Kernel Race Condition Vulnerability

  • CVE-2026-31743: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-31744: Linux Kernel NULL Pointer Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the World’s Most Advanced Cybersecurity Platform

See how our intelligent, autonomous cybersecurity platform can protect your organization now 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