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

CVE-2026-44425: ShellHub DOS Vulnerability

CVE-2026-44425 is a denial of service vulnerability in ShellHub that allows authenticated attackers to crash the API through malicious database queries. This article covers technical details, affected versions, and mitigation.

Published: May 14, 2026

CVE-2026-44425 Overview

CVE-2026-44425 is an input validation vulnerability in ShellHub, a centralized Secure Shell (SSH) gateway used to manage fleets of remote devices. Versions prior to 0.24.2 accept user-controlled identifiers in the name field of each filter property within the base64-encoded filter query parameter, as well as in the sort_by query parameter, on the device list endpoint. The API passes these values directly as BSON or SQL keys to the database layer without validation. Any authenticated user can submit crafted payloads that cause the aggregation or query to fail, returning HTTP 500 responses with no rate limiting in place. The issue is fixed in ShellHub 0.24.2 and is tracked under [CWE-20].

Critical Impact

Authenticated users can repeatedly trigger backend query failures on the device list endpoint, degrading API availability with no rate limiting to throttle abuse.

Affected Products

  • ShellHub versions prior to 0.24.2
  • ShellHub centralized SSH gateway deployments exposing the device list endpoint
  • Self-hosted ShellHub instances accepting authenticated API requests

Discovery Timeline

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

Technical Details for CVE-2026-44425

Vulnerability Analysis

The vulnerability resides in the device list endpoint of the ShellHub API. The endpoint accepts a base64-encoded filter query parameter containing an array of filter objects. Each object exposes a name field used as a database key. The endpoint also accepts a sort_by query parameter used to order results.

ShellHub passes both values directly into the database layer as BSON or SQL keys without sanitizing or whitelisting allowed identifiers. An authenticated user can supply arbitrary or malformed identifiers, causing the underlying aggregation pipeline or SQL query to throw an error. The API surfaces this error as an HTTP 500 response with an empty body.

Because the endpoint applies no rate limiting, an authenticated attacker can issue these failing requests in volume. Repeated failures consume backend resources and degrade availability for legitimate tenants.

Root Cause

The root cause is improper input validation [CWE-20] of user-controlled identifiers used as database field names. ShellHub trusts client-supplied filter and sort key names and forwards them unchanged to the query builder. A safe implementation would whitelist allowed field names against a known schema before constructing the query.

Attack Vector

Exploitation requires network access to the ShellHub API and valid authenticated credentials. The attacker constructs a base64-encoded filter payload where the name field contains an invalid or unexpected identifier, or supplies a malformed sort_by value. Sending the request to the device list endpoint forces the database layer to fail. No special privileges beyond standard user authentication are required.

Detailed exploitation specifics are documented in the ShellHub GitHub Security Advisory.

Detection Methods for CVE-2026-44425

Indicators of Compromise

  • Bursts of HTTP 500 responses with empty bodies originating from the device list endpoint
  • Authenticated API requests containing unusual or non-schema name values inside base64-decoded filter parameters
  • Requests using unexpected sort_by values that do not match documented sortable fields

Detection Strategies

  • Decode and inspect the filter query parameter from API access logs and compare name fields against an allowlist of known device attributes
  • Alert on high ratios of HTTP 500 responses to total requests on the device list endpoint from a single authenticated principal
  • Correlate authenticated user identifiers with error-response volume to identify abusive accounts

Monitoring Recommendations

  • Enable verbose API and database error logging on ShellHub backend services to capture query-builder failures
  • Forward ShellHub API logs into a centralized analytics platform and build dashboards tracking 5xx rates per endpoint and per user
  • Track aggregation and query failure metrics from the underlying database to detect repeated malformed queries

How to Mitigate CVE-2026-44425

Immediate Actions Required

  • Upgrade ShellHub to version 0.24.2 or later, which includes validation of filter and sort identifiers
  • Audit existing authenticated accounts and revoke credentials that are no longer needed to reduce the attack surface
  • Review API access logs for prior abuse of the device list endpoint with malformed filter or sort_by values

Patch Information

The maintainers fixed the issue in ShellHub 0.24.2. Operators should upgrade self-hosted deployments to this version or newer. Refer to the ShellHub GitHub Security Advisory GHSA-47r2-v3x6-wff9 for full remediation details.

Workarounds

  • Place ShellHub behind a reverse proxy or API gateway that enforces per-user rate limiting on the device list endpoint
  • Restrict access to the ShellHub API to trusted networks or VPN clients until the upgrade is applied
  • Use a web application firewall rule to reject requests whose decoded filter payloads contain name values outside the expected schema
bash
# Example nginx rate limit applied to the ShellHub API
http {
    limit_req_zone $binary_remote_addr zone=shellhub_api:10m rate=10r/s;

    server {
        location /api/devices {
            limit_req zone=shellhub_api burst=20 nodelay;
            proxy_pass http://shellhub_backend;
        }
    }
}

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechShellhub

  • SeverityMEDIUM

  • CVSS Score5.4

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

  • CVE-2026-44424: ShellHub Information Disclosure Flaw

  • CVE-2026-44423: ShellHub Information Disclosure Flaw
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