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

CVE-2026-45700: FreeRDP Buffer Overflow Vulnerability

CVE-2026-45700 is a buffer overflow vulnerability in FreeRDP's planar bitmap decoder that enables out-of-bounds heap writes during RLE data decoding. This article covers technical details, affected versions, and mitigation.

Published: June 4, 2026

CVE-2026-45700 Overview

CVE-2026-45700 is an out-of-bounds heap write vulnerability in FreeRDP, a widely used open-source implementation of the Remote Desktop Protocol (RDP). The flaw resides in the planar bitmap decoder in libfreerdp/codec/planar.c. When decoding Run-Length Encoded (RLE) planar data, freerdp_bitmap_decompress_planar() improperly validates the X destination coordinate nXDst against the caller-supplied destination stride nDstStep, even when writing into the internal pTempData buffer. An attacker controlling a malicious RDP server can supply crafted bitmap data to trigger writes past the end of the heap-allocated buffer. The issue is fixed in FreeRDP 3.26.0.

Critical Impact

A malicious RDP server can corrupt heap memory in connected FreeRDP clients, leading to crashes or potential remote code execution against high-value confidentiality, integrity, and availability targets.

Affected Products

  • FreeRDP versions prior to 3.26.0
  • Applications and distributions embedding the FreeRDP libfreerdp codec library
  • Linux, macOS, and Windows RDP clients built on FreeRDP

Discovery Timeline

  • 2026-05-29 - CVE-2026-45700 published to NVD
  • 2026-06-01 - Last updated in NVD database

Technical Details for CVE-2026-45700

Vulnerability Analysis

The vulnerability is classified under [CWE-787] Out-of-Bounds Write. FreeRDP's planar bitmap decoder processes compressed bitmap updates received from an RDP server. The function freerdp_bitmap_decompress_planar() orchestrates decoding into either a caller-supplied destination buffer or an internal temporary buffer named pTempData.

The bounds check compares the destination X coordinate nXDst against nDstStep, a stride value derived from caller-supplied parameters. This check is appropriate when output is written to the caller buffer, but it is reused for writes into pTempData, whose size does not depend on nDstStep. An RDP server can therefore advertise an oversized nDstStep paired with a large nXDst, satisfying the check while pointing writes far beyond the temporary buffer's actual allocation.

Subsequent calls to planar_decompress_plane_rle() decode attacker-controlled RLE byte streams directly past the end of pTempData, corrupting adjacent heap structures. Because the attack vector is network-based and requires only that a victim connect to a hostile RDP endpoint, exploitation aligns with the documented Vulnerable System impact profile.

Root Cause

The root cause is an incorrect bounds-check assumption: a single validation path treats nDstStep as authoritative for the size of both the external destination and the internal pTempData buffer. The two buffers have independent sizes, so server-controlled stride values let attackers bypass the guard.

Attack Vector

An attacker hosts or compromises an RDP server and induces a victim to initiate a connection, for example through a phishing link, malicious .rdp file, or hijacked bookmark. Once the client connects, the server transmits a crafted planar bitmap update that triggers the out-of-bounds write inside the FreeRDP client process.

The vulnerability manifests during RLE planar decoding in libfreerdp/codec/planar.c. Refer to the FreeRDP GHSA-mpxh-8fq3-x8mh advisory for the upstream patch details.

Detection Methods for CVE-2026-45700

Indicators of Compromise

  • Unexpected crashes or segmentation faults in FreeRDP-based clients (xfreerdp, wlfreerdp, mstsc-compatible wrappers) shortly after connecting to a remote host.
  • Outbound RDP (TCP/3389) connections from user endpoints to untrusted or newly observed external IP addresses.
  • Core dumps from FreeRDP processes containing heap corruption signatures near planar_decompress_plane_rle frames.

Detection Strategies

  • Inventory installed FreeRDP packages and embedded libraries; flag any version below 3.26.0 for remediation.
  • Inspect RDP session telemetry for clients connecting to non-corporate RDP servers, particularly over the public internet.
  • Enable AddressSanitizer or heap hardening (e.g., glibc tcache checks) in development and staging builds to surface the out-of-bounds write during fuzz testing.

Monitoring Recommendations

  • Alert on FreeRDP client processes that terminate abnormally after establishing an RDP session.
  • Monitor egress firewall logs for RDP traffic originating from workstations to atypical destinations and correlate with user activity.
  • Track package management events for FreeRDP upgrades to confirm fleet-wide remediation to 3.26.0 or later.

How to Mitigate CVE-2026-45700

Immediate Actions Required

  • Upgrade FreeRDP and all dependent client applications to version 3.26.0 or later.
  • Restrict outbound RDP connectivity from end-user endpoints to an allowlist of known internal jump hosts.
  • Warn users against opening .rdp files or RDP links from untrusted sources until clients are patched.

Patch Information

The vulnerability is fixed in FreeRDP 3.26.0. The fix corrects the bounds-check logic in freerdp_bitmap_decompress_planar() so that writes into pTempData are validated against the temporary buffer's actual size rather than the caller-supplied nDstStep. Distribution maintainers should rebuild downstream packages against the patched release. Full details are available in the FreeRDP GitHub Security Advisory GHSA-mpxh-8fq3-x8mh.

Workarounds

  • Block outbound TCP/3389 and UDP/3389 at the perimeter except to vetted RDP gateways.
  • Route all RDP usage through a Remote Desktop Gateway that terminates and re-originates sessions, reducing direct exposure to malicious servers.
  • Disable bitmap codecs or advanced graphics features in FreeRDP client configurations where operationally feasible until patching is complete.
bash
# Verify the installed FreeRDP version and upgrade if below 3.26.0
xfreerdp --version

# Debian/Ubuntu
sudo apt update && sudo apt install --only-upgrade freerdp2-x11 freerdp3-x11

# Fedora/RHEL
sudo dnf upgrade freerdp

# Restrict outbound RDP at the host firewall (Linux nftables example)
sudo nft add rule inet filter output tcp dport 3389 ip daddr != 10.0.0.0/8 drop

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

  • Vulnerability Details
  • TypeBuffer Overflow

  • Vendor/TechFreerdp

  • SeverityHIGH

  • CVSS Score7.7

  • EPSS Probability0.02%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:P/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
  • IntegrityHigh
  • AvailabilityHigh
  • CWE References
  • CWE-787
  • Vendor Resources
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-44420: FreeRDP Buffer Overflow Vulnerability

  • CVE-2026-44421: FreeRDP Buffer Overflow Vulnerability

  • CVE-2026-40033: FreeRDP Buffer Overflow Vulnerability

  • CVE-2026-33982: FreeRDP Buffer Overflow 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