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

CVE-2026-26965: FreeRDP Buffer Overflow Vulnerability

CVE-2026-26965 is a buffer overflow vulnerability in FreeRDP that allows malicious RDP servers to execute heap out-of-bounds writes on clients. This post covers technical details, affected versions, impact, and mitigation.

Published: February 27, 2026

CVE-2026-26965 Overview

FreeRDP, a free implementation of the Remote Desktop Protocol, contains a heap out-of-bounds write vulnerability in the RLE planar decode path prior to version 3.23.0. The planar_decompress_plane_rle() function writes into pDstData at calculated offsets without properly verifying that the destination coordinates fit within the allocated buffer bounds. Specifically, the function fails to verify that (nYDst+nSrcHeight) fits in the destination height or that (nXDst+nSrcWidth) fits in the destination stride.

When TempFormat differs from DstFormat, pDstData becomes planar->pTempData (sized for the desktop), while nYDst is only validated against the surface by is_within_surface(). This discrepancy allows a malicious RDP server to exploit this vulnerability to perform a heap out-of-bounds write with attacker-controlled offset and pixel data on any connecting FreeRDP client.

Critical Impact

A malicious RDP server can achieve control-flow corruption by overwriting function pointers in adjacent heap structures. The out-of-bounds write can reach up to 132,096 bytes past the temp buffer end, and on the brk heap (desktop ≤ 128×128), an adjacent NSC_CONTEXT struct's decode function pointer can be overwritten with attacker-controlled pixel data, potentially leading to remote code execution.

Affected Products

  • FreeRDP versions prior to 3.23.0
  • Applications and systems using vulnerable FreeRDP libraries
  • FreeRDP-based RDP clients connecting to untrusted servers

Discovery Timeline

  • 2026-02-25 - CVE-2026-26965 published to NVD
  • 2026-02-25 - Last updated in NVD database

Technical Details for CVE-2026-26965

Vulnerability Analysis

This vulnerability is classified as CWE-787 (Out-of-bounds Write), a memory corruption flaw in the planar codec decompression functionality. The root issue lies in the planar_decompress_plane_rle() function within libfreerdp/codec/planar.c, which performs pixel data decompression without adequate bounds checking.

The vulnerability is network-exploitable and requires user interaction (connecting to a malicious RDP server). Once a victim client connects, the attacker has control over the RLE-encoded pixel data sent to the client, allowing precise manipulation of the out-of-bounds write location and content. The demonstrated exploitation shows control-flow corruption where the nsc->decode function pointer is overwritten with attacker-controlled values (e.g., 0xFF414141FF414141), indicating potential for arbitrary code execution.

Root Cause

The root cause is a missing destination bounds validation in the planar decompression routine. The function calculates write offsets using ((nYDst+y) * nDstStep) + (4*nXDst) + nChannel but only validates coordinates against the surface dimensions via is_within_surface(), not against the actual allocated buffer size. When temporary buffer paths are used (TempFormat != DstFormat), the pTempData buffer may be smaller than what the surface dimensions would suggest, creating the out-of-bounds condition.

Attack Vector

The attack is network-based and requires social engineering or a man-in-the-middle scenario to direct a FreeRDP client to connect to a malicious RDP server. The attacker-controlled server sends specially crafted RLE-encoded planar data that triggers the out-of-bounds write. By controlling both the offset calculation (via nYDst, nXDst, and related parameters) and the pixel data content, an attacker can:

  1. Write up to 132,096 bytes beyond the allocated temp buffer
  2. Target adjacent heap structures such as NSC_CONTEXT
  3. Overwrite function pointers to achieve control-flow hijacking
  4. Potentially execute arbitrary code on the victim's system
c
 	if (planar->maxHeight < nSrcHeight)
 		return FALSE;
 
+	const UINT32 bpp = FreeRDPGetBytesPerPixel(DstFormat);
 	if (nDstStep <= 0)
-		nDstStep = nDstWidth * FreeRDPGetBytesPerPixel(DstFormat);
+		nDstStep = nDstWidth * bpp;
 
 	const BYTE* srcp = pSrcData;

Source: GitHub Commit a0be5cb

Detection Methods for CVE-2026-26965

Indicators of Compromise

  • Unusual crash dumps or memory corruption errors from FreeRDP client processes
  • Unexpected function pointer values in heap memory analysis (e.g., patterns like 0xFF414141FF414141 in NSC_CONTEXT structures)
  • RDP connections to unfamiliar or suspicious server addresses
  • Process behavior anomalies following RDP session establishment

Detection Strategies

  • Monitor FreeRDP client processes for memory access violations or segmentation faults during RDP sessions
  • Deploy endpoint detection rules to identify heap corruption patterns associated with out-of-bounds writes
  • Analyze network traffic for malformed RDP planar encoding data that exceeds expected dimensions
  • Use memory integrity monitoring tools to detect function pointer corruption in heap allocations

Monitoring Recommendations

  • Enable detailed logging for FreeRDP client connections, including server addresses and session events
  • Configure endpoint protection to alert on abnormal memory access patterns in RDP client applications
  • Implement network monitoring to detect connections to untrusted or newly registered RDP server addresses
  • Review crash reports and error logs from FreeRDP-based applications for signs of exploitation attempts

How to Mitigate CVE-2026-26965

Immediate Actions Required

  • Upgrade FreeRDP to version 3.23.0 or later immediately
  • Audit all systems and applications that depend on FreeRDP libraries for vulnerable versions
  • Avoid connecting FreeRDP clients to untrusted or unknown RDP servers until patched
  • Implement network segmentation to limit exposure of RDP clients to potentially malicious servers
  • Review and update third-party applications that bundle FreeRDP components

Patch Information

The vulnerability is fixed in FreeRDP version 3.23.0. The patch adds proper destination bounds validation in the planar decompression code to ensure write operations cannot exceed allocated buffer boundaries. Organizations should update to this version or apply the security patch from the GitHub commit. For additional details, refer to the GitHub Security Advisory GHSA-5vgf-mw4f-r33h.

Workarounds

  • Restrict RDP client connections to trusted, verified servers only via network policies or firewall rules
  • Deploy application whitelisting to prevent execution of compromised FreeRDP binaries
  • Use VPN or secure tunnels when connecting to remote RDP servers to reduce exposure to rogue servers
  • Consider disabling planar codec support if not required (may impact visual quality)
bash
# Configuration example
# Restrict FreeRDP connections to trusted servers only
# Add to firewall rules or network policy

# Example iptables rule to allow RDP only to known servers
iptables -A OUTPUT -p tcp --dport 3389 -d trusted-rdp-server.example.com -j ACCEPT
iptables -A OUTPUT -p tcp --dport 3389 -j 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 Score8.8

  • EPSS Probability0.04%

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

  • GitHub Security Advisory GHSA-5vgf-mw4f-r33h
  • Related CVEs
  • CVE-2026-33982: FreeRDP Buffer Overflow Vulnerability

  • CVE-2026-33984: FreeRDP Buffer Overflow Vulnerability

  • CVE-2026-33986: FreeRDP Buffer Overflow Vulnerability

  • CVE-2026-33987: FreeRDP Buffer Overflow Vulnerability
Default Legacy - Prefooter | 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