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-44424

CVE-2026-44424: ShellHub Information Disclosure Flaw

CVE-2026-44424 is an information disclosure vulnerability in ShellHub that allows authenticated users to access device metadata from other namespaces. This article covers technical details, affected versions, and mitigation.

Published: May 14, 2026

CVE-2026-44424 Overview

CVE-2026-44424 is an authorization flaw in ShellHub, a centralized Secure Shell (SSH) gateway used to manage remote device fleets. The vulnerability affects ShellHub versions prior to 0.24.2. The GET /api/devices/:uid endpoint returns the full device object to any authenticated caller without confirming that the device belongs to the caller's namespace (tenant). Any user holding a valid JSON Web Token (JWT) or API Key can read device metadata from other tenants by supplying a known or guessed device Unique Identifier (UID). The issue is tracked as an Insecure Direct Object Reference [CWE-639] and is fixed in ShellHub 0.24.2.

Critical Impact

Authenticated tenants can retrieve device metadata belonging to other tenants, breaking the multi-tenant isolation model of ShellHub deployments.

Affected Products

  • ShellHub versions prior to 0.24.2
  • Self-hosted ShellHub SSH gateway deployments
  • Multi-tenant ShellHub instances exposing the device API

Discovery Timeline

  • 2026-05-13 - CVE-2026-44424 published to the National Vulnerability Database (NVD)
  • 2026-05-13 - Last updated in NVD database

Technical Details for CVE-2026-44424

Vulnerability Analysis

ShellHub organizes resources into namespaces that represent tenant boundaries. Devices, sessions, and credentials are scoped to a namespace, and API consumers authenticate using either a JWT or an API Key tied to a specific tenant. The expectation is that requests for tenant-owned resources are validated against the caller's namespace before data is returned.

The GET /api/devices/:uid route violates this expectation. The handler authenticates the caller but then loads the device record using only the uid path parameter. It does not compare the device's owning namespace to the caller's namespace claim. The full device object, including hostname, tags, and connection metadata, is serialized in the response body.

The condition maps to Authorization Bypass through User-Controlled Key [CWE-639]. Confidentiality of device records is impacted, while integrity and availability are unaffected. Exploitation requires a valid account on the target ShellHub instance and knowledge or guessing of a target device UID.

Root Cause

The handler enforces authentication but omits the namespace-scoped authorization check that other tenant-aware endpoints perform. The device lookup uses the supplied UID as the sole selection key, allowing cross-tenant reads.

Attack Vector

An attacker registers or already controls an account on a shared ShellHub instance. The attacker then issues an authenticated HTTP GET request to /api/devices/:uid for a UID associated with a different tenant. The server returns the device record without rejecting the request. UIDs can be obtained from logs, exposed inventories, partner integrations, or guessing where UID entropy is weak.

The vulnerability is described in the ShellHub GitHub Security Advisory GHSA-j72x-xfwg-783f. No verified proof-of-concept code is published with this advisory.

Detection Methods for CVE-2026-44424

Indicators of Compromise

  • Authenticated GET /api/devices/:uid requests where the requested uid does not belong to the caller's namespace
  • Single accounts or API Keys enumerating large numbers of distinct device UIDs in short windows
  • Requests originating from API Keys outside their expected source IP ranges or usage patterns

Detection Strategies

  • Parse ShellHub API access logs and join request uid values against the namespace ownership table to flag cross-tenant reads
  • Alert on bursts of /api/devices/ requests from a single principal that exceed baseline rates
  • Correlate API Key usage with the tenant that owns each accessed device UID to identify boundary violations

Monitoring Recommendations

  • Forward ShellHub reverse-proxy and application logs to a centralized analytics platform with tenant context preserved
  • Track per-account and per-API-Key request counts to the device API and alert on deviations
  • Review JWT issuance and API Key creation events for accounts that subsequently query devices outside their namespace

How to Mitigate CVE-2026-44424

Immediate Actions Required

  • Upgrade all ShellHub server instances to version 0.24.2 or later
  • Rotate API Keys and force re-authentication for accounts on multi-tenant instances after patching
  • Audit device API logs since deployment to identify cross-tenant access attempts
  • Restrict ShellHub administrative APIs to trusted networks where feasible

Patch Information

The maintainers fixed CVE-2026-44424 in ShellHub 0.24.2 by enforcing namespace ownership checks on the GET /api/devices/:uid handler. Operators should follow the upgrade guidance in the ShellHub GitHub Security Advisory GHSA-j72x-xfwg-783f and redeploy affected containers.

Workarounds

  • Restrict access to the ShellHub API to vetted accounts until the upgrade is applied
  • Place a reverse proxy or API gateway in front of ShellHub to enforce per-tenant authorization on /api/devices/:uid
  • Disable shared multi-tenant deployments and isolate tenants into separate ShellHub instances if patching is delayed
bash
# Upgrade ShellHub to the patched release
docker compose pull
docker compose up -d

# Verify the running ShellHub version is 0.24.2 or later
curl -s https://<shellhub-host>/info | jq '.version'

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechShellhub

  • SeverityMEDIUM

  • CVSS Score6.5

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-639
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-44426: ShellHub Information Disclosure Flaw

  • CVE-2026-44423: ShellHub Information Disclosure Flaw

  • CVE-2026-44425: ShellHub DOS 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