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

CVE-2026-23948: FreeRDP NULL Pointer DoS Vulnerability

CVE-2026-23948 is a NULL pointer dereference denial-of-service vulnerability in FreeRDP that allows malicious RDP servers to crash the proxy. This article covers technical details, affected versions, and mitigations.

Published: February 13, 2026

CVE-2026-23948 Overview

CVE-2026-23948 is a NULL pointer dereference vulnerability affecting FreeRDP, a free implementation of the Remote Desktop Protocol. Prior to version 3.22.0, a vulnerability in the rdp_write_logon_info_v2() function allows a malicious RDP server to crash the FreeRDP proxy by sending a specially crafted LogonInfoV2 PDU with cbDomain=0 or cbUserName=0. This vulnerability enables denial of service attacks against FreeRDP proxy deployments.

Critical Impact

Malicious RDP servers can exploit this vulnerability to remotely crash FreeRDP proxy instances, disrupting remote desktop connectivity for all users relying on the affected proxy.

Affected Products

  • FreeRDP versions prior to 3.22.0
  • FreeRDP proxy deployments accepting connections from untrusted RDP servers
  • Systems using libfreerdp for RDP protocol handling

Discovery Timeline

  • 2026-02-09 - CVE-2026-23948 published to NVD
  • 2026-02-10 - Last updated in NVD database

Technical Details for CVE-2026-23948

Vulnerability Analysis

This vulnerability is classified as CWE-476 (NULL Pointer Dereference). The flaw exists in the rdp_write_logon_info_v2() function within libfreerdp/core/info.c. When processing LogonInfoV2 Protocol Data Units (PDUs) from an RDP server, the function fails to properly validate the cbDomain and cbUserName fields before dereferencing associated pointers.

When a malicious RDP server sends a crafted LogonInfoV2 PDU containing zero-length values for the domain or username fields, the function attempts to access memory through a NULL pointer, resulting in an immediate crash of the FreeRDP proxy process. This vulnerability is exploitable over the network without authentication, as the malicious payload can be delivered during the RDP connection establishment phase.

Root Cause

The root cause is a missing NULL check in the rdp_write_logon_info_v2() function. The function processes domain and username information from incoming RDP server responses without validating that these fields contain valid, non-zero-length data. When cbDomain=0 or cbUserName=0 is specified in the LogonInfoV2 PDU, the corresponding string pointers may be NULL, and subsequent operations on these pointers cause the NULL pointer dereference.

Attack Vector

The attack can be executed by any entity operating a malicious RDP server that a FreeRDP client or proxy connects to. The attack vector is network-based and requires no user interaction or prior authentication. An attacker can set up a rogue RDP server and craft LogonInfoV2 PDU responses with cbDomain=0 or cbUserName=0 fields. When a FreeRDP proxy connects to this malicious server, the crafted response triggers the NULL pointer dereference, crashing the proxy service.

The security patch addresses this by adding proper NULL validation before accessing the domain and username pointers:

c
 	return TRUE;
 }
 
-static BOOL rdp_write_logon_info_v2(wStream* s, logon_info* info)
+static BOOL rdp_write_logon_info_v2(wStream* s, const logon_info* info)
 {
 	size_t domainLen = 0;
 	size_t usernameLen = 0;

Source: GitHub Commit Notice

Detection Methods for CVE-2026-23948

Indicators of Compromise

  • Unexpected FreeRDP proxy process crashes or restarts
  • Crash dumps showing NULL pointer dereference in rdp_write_logon_info_v2() function
  • Unusual RDP connection attempts from unknown or untrusted servers
  • LogonInfoV2 PDUs in network traffic with zero-length domain or username fields

Detection Strategies

  • Monitor FreeRDP proxy processes for unexpected terminations and automatic restarts
  • Implement network-based detection rules to identify malformed LogonInfoV2 PDUs with cbDomain=0 or cbUserName=0
  • Deploy endpoint detection to capture crash events in FreeRDP-related processes
  • Review RDP server connection logs for connections to unknown or suspicious endpoints

Monitoring Recommendations

  • Enable crash reporting and core dump analysis for FreeRDP proxy deployments
  • Implement alerting on FreeRDP proxy service interruptions
  • Monitor network traffic for anomalous RDP protocol behavior
  • Track connections to new or untrusted RDP server endpoints

How to Mitigate CVE-2026-23948

Immediate Actions Required

  • Upgrade FreeRDP to version 3.22.0 or later immediately
  • Review and restrict the list of allowed RDP servers that FreeRDP proxies can connect to
  • Implement network segmentation to limit exposure of FreeRDP proxy services
  • Enable service monitoring to detect and alert on proxy crashes

Patch Information

The vulnerability is fixed in FreeRDP version 3.22.0. The fix adds proper NULL pointer validation in the rdp_write_logon_info_v2() function before processing domain and username fields. Organizations should upgrade to version 3.22.0 or later. The patch commit is available at the GitHub Commit Notice, and additional details can be found in the GitHub Security Advisory.

Workarounds

  • Restrict FreeRDP proxy connections to trusted, known RDP servers only using allowlists
  • Deploy network-level filtering to block RDP connections to untrusted external servers
  • Implement automatic service restart mechanisms to minimize downtime from crash-based DoS attacks
  • Consider deploying redundant FreeRDP proxy instances for high-availability environments
bash
# Configuration example
# Restrict FreeRDP proxy to connect only to trusted servers
# Add to FreeRDP proxy configuration or use firewall rules

# Example iptables rule to restrict outbound RDP connections
iptables -A OUTPUT -p tcp --dport 3389 -d trusted_rdp_server_ip -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
  • TypeDOS

  • Vendor/TechFreerdp

  • SeverityMEDIUM

  • CVSS Score6.9

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:N/VA:L/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
  • AvailabilityLow
  • CWE References
  • CWE-476
  • Vendor Resources
  • GitHub Commit Notice

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-33952: FreeRDP Gateway DOS Vulnerability

  • CVE-2026-33977: FreeRDP Client DoS Vulnerability

  • CVE-2026-33983: FreeRDP Remote Desktop Protocol DoS Flaw

  • CVE-2026-31884: FreeRDP ADPCM Decoder DoS 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