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

CVE-2026-44296: Deskflow TLS DoS Vulnerability

CVE-2026-44296 is a remote denial of service flaw in Deskflow servers with TLS enabled that allows attackers to stall input delivery. This post covers technical details, affected versions, impact, and mitigation.

Published: May 17, 2026

CVE-2026-44296 Overview

CVE-2026-44296 is a remote, unauthenticated denial of service (DoS) vulnerability in Deskflow, an open-source keyboard and mouse sharing application. Versions prior to 1.26.0.167 running with TLS enabled (the default configuration) are affected. When a TCP peer connects to the listening port and sends data that does not parse as a valid TLS ClientHello, the SecureSocket::secureAccept function enters a fatal-error branch and invokes Arch::sleep(1) on the multiplexer worker thread. That thread services every connected socket, so a single failed handshake stalls input delivery to all clients for approximately one second.

Critical Impact

A sustained drip of malformed TCP connections at one per second or higher renders the Deskflow server effectively unusable, blocking mouse, keyboard, and clipboard events to all connected screens.

Affected Products

  • Deskflow versions prior to 1.26.0.167
  • Deskflow servers with TLS enabled (default configuration)
  • All operating systems running vulnerable Deskflow builds

Discovery Timeline

  • 2026-05-12 - CVE-2026-44296 published to NVD
  • 2026-05-13 - Last updated in NVD database

Technical Details for CVE-2026-44296

Vulnerability Analysis

The vulnerability resides in src/lib/net/SecureSocket.cpp within the SecureSocket::secureAccept routine. When TLS negotiation fails fatally, the code logs an error and calls Arch::sleep(1). The intent was to throttle hammering on the socket, but the sleep executes on the multiplexer worker thread that drives I/O for every connected client. The blocking call freezes input delivery, clipboard synchronization, and screen switching across the entire Deskflow deployment.

The weakness maps to [CWE-400: Uncontrolled Resource Consumption]. An attacker only needs to open a TCP connection to the Deskflow listening port and send arbitrary non-TLS bytes. No authentication, credentials, or user interaction are required.

Root Cause

The root cause is a blocking sleep placed on a shared worker thread that multiplexes every socket the server handles. The handler treats a failed TLS handshake as a localized error but applies a server-wide stall as the mitigation. Because the multiplexer is single-threaded for socket servicing, any time spent sleeping blocks all other clients from receiving events.

Attack Vector

An attacker reaches the Deskflow server over the network and opens TCP sessions to its listening port. Each session sends bytes that fail to parse as a valid ClientHello. One failure per second is sufficient to maintain a continuous freeze of legitimate input. The attack requires no privileges and no interaction from a legitimate user.

cpp
// Patch in src/lib/net/SecureSocket.cpp
// fix(tls): prevent DoS by removing blocking sleep
   checkResult(r, retry);
 
   if (isFatal()) {
-    // tell user and sleep so the socket isn't hammered.
+    // Never block here; this thread services every connected socket.
+    // Historically a 1s sleep let any failed handshake DoS all clients.
     LOG_ERR("failed to accept secure socket");
-    LOG_WARN("client connection may not be secure");
     m_secureReady = false;
-    Arch::sleep(1);
     retry = 0;
-    return -1; // Failed, error out
+    return -1; // Fail
   }
 
   // If not fatal and no retry, state is good

Source: GitHub Commit 3297834

Detection Methods for CVE-2026-44296

Indicators of Compromise

  • Repeated failed to accept secure socket entries in Deskflow server logs within short time windows
  • Bursts of short-lived TCP connections to the Deskflow listening port from a single source
  • User reports of input lag, frozen cursor, or delayed clipboard sync coinciding with the log entries

Detection Strategies

  • Alert when the rate of LOG_ERR("failed to accept secure socket") messages exceeds a baseline of one per minute
  • Correlate spikes in TCP SYN and RST activity on the Deskflow port with simultaneous input delivery delays
  • Monitor for connections to the Deskflow port from sources outside the expected client allow list

Monitoring Recommendations

  • Forward Deskflow server logs to a central log platform and build a dashboard around failed TLS handshakes
  • Capture netflow or connection-tracking data on the host running the Deskflow server to baseline normal client connection patterns
  • Track end-user telemetry such as input event latency to identify DoS conditions in progress

How to Mitigate CVE-2026-44296

Immediate Actions Required

  • Upgrade all Deskflow servers to version 1.26.0.167 or later
  • Restrict network access to the Deskflow listening port using a host firewall or network ACL so only known client IPs can connect
  • Inventory all hosts running Deskflow and verify the installed version against the fixed release

Patch Information

The fix landed in commit 329783490bd16774ba903b84212467d20d76bfba and is included in Deskflow 1.26.0.167. The patch removes the Arch::sleep(1) call and the secondary LOG_WARN from the fatal branch of SecureSocket::secureAccept, returning -1 immediately. See the GitHub Security Advisory GHSA-3mxm-cgh2-6448 for full details.

Workarounds

  • Bind the Deskflow server to a loopback or management interface and tunnel client traffic through VPN or SSH
  • Place the Deskflow listener behind a firewall rule that allows only trusted client subnets
  • Rate-limit inbound connections to the Deskflow port at the network edge to slow malformed handshake bursts
bash
# Example: restrict Deskflow port 24800 to a trusted client subnet using iptables
iptables -A INPUT -p tcp --dport 24800 -s 10.0.10.0/24 -j ACCEPT
iptables -A INPUT -p tcp --dport 24800 -j DROP

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechDeskflow

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-400
  • Technical References
  • GitHub Commit Change

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-41476: Deskflow Use-After-Free Vulnerability

  • CVE-2026-41477: Deskflow Privilege Escalation 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