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
    • 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-30794

CVE-2026-30794: RustDesk Client AiTM Vulnerability

CVE-2026-30794 is an improper certificate validation flaw in RustDesk Client that enables Adversary in the Middle attacks through invalid TLS certificate acceptance. This article covers technical details, affected versions, and mitigation.

Published: March 6, 2026

CVE-2026-30794 Overview

CVE-2026-30794 is an Improper Certificate Validation vulnerability (CWE-295) affecting the RustDesk Client remote desktop application across all major platforms including Windows, MacOS, Linux, iOS, and Android. The vulnerability exists in the HTTP API client and TLS transport modules, specifically within the src/hbbs_http/http_client.rs file where TLS retry logic improperly uses danger_accept_invalid_certs(true), allowing Adversary-in-the-Middle (AiTM) attacks.

This critical security flaw enables attackers positioned on the network path to intercept, modify, or eavesdrop on communications between RustDesk clients and servers by exploiting the disabled certificate validation during connection retry attempts.

Critical Impact

Attackers can intercept remote desktop sessions, steal authentication credentials, inject malicious commands, and compromise confidentiality and integrity of remote access communications.

Affected Products

  • RustDesk Client through version 1.4.5 on Windows
  • RustDesk Client through version 1.4.5 on MacOS
  • RustDesk Client through version 1.4.5 on Linux
  • RustDesk Client through version 1.4.5 on iOS
  • RustDesk Client through version 1.4.5 on Android

Discovery Timeline

  • 2026-03-05 - CVE-2026-30794 published to NVD
  • 2026-03-05 - Last updated in NVD database

Technical Details for CVE-2026-30794

Vulnerability Analysis

The vulnerability stems from insecure TLS certificate validation handling in the RustDesk Client's HTTP API communication layer. When the client encounters a TLS connection failure, the retry logic in src/hbbs_http/http_client.rs falls back to using danger_accept_invalid_certs(true), which completely disables certificate chain validation. This implementation flaw means that after an initial failed TLS handshake, subsequent connection attempts will accept any certificate presented by the server, including self-signed, expired, or certificates issued by untrusted Certificate Authorities.

The vulnerable code path affects the TLS transport modules used for communication between RustDesk clients and relay/signaling servers. An attacker who can position themselves in the network path (such as on a compromised network, through ARP spoofing, or DNS hijacking) can present a fraudulent certificate during the retry phase and successfully establish a man-in-the-middle position.

Root Cause

The root cause is improper implementation of TLS certificate validation retry logic in the Rust-based HTTP client code. The danger_accept_invalid_certs(true) function call explicitly disables all certificate validation checks as a fallback mechanism, violating secure coding principles. This likely was implemented as a development convenience or to handle edge cases with self-signed certificates but was inadvertently left in production code paths.

The vulnerability is classified under CWE-295 (Improper Certificate Validation), which encompasses failures to properly verify that a certificate is valid, trusted, and matches the intended host.

Attack Vector

The attack leverages the network-based attack vector requiring the attacker to achieve an adversary-in-the-middle position. The exploitation flow involves:

  1. The attacker positions themselves on the network path between the RustDesk client and the legitimate server
  2. The attacker causes the initial TLS handshake to fail (through packet manipulation or blocking)
  3. The RustDesk client triggers the vulnerable retry logic with certificate validation disabled
  4. The attacker presents a malicious certificate for their interception proxy
  5. The client accepts the invalid certificate and establishes a connection through the attacker
  6. The attacker can now intercept, modify, or inject data into the remote desktop session

This vulnerability enables complete compromise of remote desktop session confidentiality and integrity, including credential theft, session hijacking, and command injection.

Detection Methods for CVE-2026-30794

Indicators of Compromise

  • Unexpected TLS certificate errors or warnings in RustDesk client logs followed by successful connections
  • Network traffic showing TLS connections to RustDesk servers with certificates not matching expected certificate authorities
  • Presence of unknown or self-signed certificates in TLS sessions with RustDesk infrastructure
  • DNS resolution anomalies for RustDesk server hostnames

Detection Strategies

  • Implement network monitoring to detect TLS certificate mismatches for known RustDesk server endpoints
  • Deploy endpoint detection rules to identify RustDesk client processes accepting invalid certificates
  • Monitor for ARP spoofing or DNS hijacking indicators that could enable MITM positioning
  • Analyze TLS handshake failures followed by successful connections with different certificates

Monitoring Recommendations

  • Enable verbose logging on RustDesk clients to capture TLS handshake details and certificate information
  • Implement certificate pinning validation at the network perimeter for RustDesk traffic
  • Deploy behavioral analytics to detect unusual remote desktop session patterns that may indicate interception
  • Correlate authentication events with network anomalies around RustDesk usage

How to Mitigate CVE-2026-30794

Immediate Actions Required

  • Upgrade RustDesk Client to a patched version beyond 1.4.5 when available
  • Restrict RustDesk usage to trusted network environments until patched
  • Implement network-level certificate validation through proxy inspection where possible
  • Monitor for indicators of active exploitation in environments using affected versions

Patch Information

Organizations should monitor the GitHub RustDesk Repository for security updates and patched releases. Additional vulnerability details may be available through the Google Document Resource and Vulsec Security Information.

Workarounds

  • Use VPN connections to establish trusted network tunnels for all RustDesk communications
  • Deploy network segmentation to limit attacker positioning opportunities
  • Consider alternative remote desktop solutions until a patch is available for critical use cases
  • Implement network-based intrusion detection specifically monitoring for certificate anomalies in RustDesk traffic
bash
# Network monitoring configuration example
# Add firewall rules to log RustDesk traffic for certificate inspection
iptables -A OUTPUT -p tcp --dport 21115:21119 -j LOG --log-prefix "RustDesk Traffic: "
iptables -A OUTPUT -p tcp --dport 21116 -j LOG --log-prefix "RustDesk Relay: "

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechRustdesk Client

  • SeverityCRITICAL

  • CVSS Score9.1

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:N/VC:H/VI:H/VA:N/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
  • AvailabilityNone
  • CWE References
  • CWE-295
  • Technical References
  • Google Document Resource

  • GitHub RustDesk Repository

  • Vulsec Security Information
  • Latest CVEs
  • CVE-2026-35467: Browser API Key Information Disclosure

  • CVE-2026-35466: cveInterface.js XSS Vulnerability

  • CVE-2026-30252: ZenShare Suite XSS Vulnerability

  • CVE-2026-30251: ZenShare Suite v17.0 XSS Vulnerability
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