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

CVE-2026-34000: X.org X Server Information Disclosure Flaw

CVE-2026-34000 is an information disclosure flaw in X.org X Server affecting XKB geometry processing. Attackers can read uninitialized memory or crash the server. This article covers technical details, impact, and mitigation.

Published: May 7, 2026

CVE-2026-34000 Overview

CVE-2026-34000 is an out-of-bounds read vulnerability in the X.Org X Server. The flaw resides in the XKB (X Keyboard Extension) geometry processing path, specifically within the CheckSetGeom() and XkbAddGeomKeyAlias functions. An attacker with a connection to the X11 server, either local or remote, can read uninitialized or out-of-bounds memory without user interaction. Successful exploitation can disclose process memory or crash the server, producing a denial of service for any session relying on the display server. The vulnerability is tracked under [CWE-125: Out-of-bounds Read].

Critical Impact

Unauthenticated network-reachable X11 clients can read server memory or crash the display server, breaking confidentiality and availability of every X session it hosts.

Affected Products

  • X.Org X Server (upstream)
  • Red Hat Enterprise Linux 6, 7, 8, 9, and 10
  • Downstream distributions packaging the affected xorg-server build

Discovery Timeline

  • 2026-05-05 - CVE-2026-34000 published to NVD
  • 2026-05-07 - Last updated in NVD database

Technical Details for CVE-2026-34000

Vulnerability Analysis

The defect lives in the XKB extension code that parses keyboard geometry requests. When a client issues a SetGeometry request, CheckSetGeom() validates the layout payload and XkbAddGeomKeyAlias copies alias entries into server-managed structures. Bounds checks against the supplied length fields are insufficient relative to the actual buffer size. As a result, the server reads past the end of the allocated request buffer or accesses memory that has not been initialized for the current request. The reads can be reflected back to the client in subsequent X protocol replies, leaking adjacent heap contents. The same condition can dereference invalid offsets and abort the server process, terminating every connected session.

Root Cause

The root cause is missing length validation between client-supplied geometry descriptors and the corresponding server allocations. The XKB request handler trusts size fields embedded in the request payload without confirming they fit within the parsed structure. This allows attacker-controlled offsets to drive read operations on memory the server never intended to expose.

Attack Vector

Any client able to establish an X11 connection can trigger the flaw. Authentication is not required when the X server accepts TCP connections, listens on tcp/6000, or when an unauthenticated Unix socket is exposed inside a multi-user host or container. The attacker sends a crafted XKB SetGeometry request with manipulated alias and section length fields. No user interaction is needed.

No public proof-of-concept code is currently available. Refer to the Red Hat CVE-2026-34000 Advisory and Red Hat Bugzilla Report #2451107 for upstream technical detail.

Detection Methods for CVE-2026-34000

Indicators of Compromise

  • Unexpected Xorg or Xwayland process crashes with SIGSEGV or SIGABRT recorded in /var/log/Xorg.0.log or journald.
  • Core dumps from the X server containing references to CheckSetGeom or XkbAddGeomKeyAlias in the stack trace.
  • New or unusual TCP connections to port 6000-6063 from non-administrative hosts.

Detection Strategies

  • Hunt for processes issuing XKB SetGeometry requests against the local display from non-interactive users or container workloads.
  • Alert on repeated X server restarts on a single host within a short window, which can indicate exploitation attempts triggering crashes.
  • Inspect EDR telemetry for unexpected children of Xorg, such as debuggers or shells launched after a crash event.

Monitoring Recommendations

  • Forward Xorg, gdm, and sddm logs to a centralized logging or SIEM platform and alert on abnormal termination patterns.
  • Monitor outbound TCP 6000+ traffic from servers that should not expose remote X11.
  • Track installed xorg-server package versions across the fleet to identify hosts still running vulnerable builds.

How to Mitigate CVE-2026-34000

Immediate Actions Required

  • Apply vendor updates for xorg-server as soon as patched packages are published by your distribution.
  • Disable TCP listeners on the X server by starting it with -nolisten tcp, restricting access to local Unix sockets.
  • Restrict X11 access to trusted users with xhost policies and remove any xhost + configurations.
  • Migrate interactive workstations to Wayland sessions where the affected X server code paths are not in use.

Patch Information

Red Hat is tracking the issue in Red Hat Bugzilla Report #2451107 with status updates published in the Red Hat CVE-2026-34000 Advisory. Apply the upstream X.Org X Server fixes for CheckSetGeom() and XkbAddGeomKeyAlias once distribution-level errata are available for RHEL 6, 7, 8, 9, and 10.

Workarounds

  • Run the X server with -nolisten tcp to block remote X11 connections at the network layer.
  • Enforce host-based firewall rules dropping inbound traffic to ports 6000-6063.
  • Limit local accounts and container workloads that can reach the user DISPLAY socket, reducing the local attack surface.
  • Where feasible, disable the XKB extension or switch users to Wayland-based sessions until patches are deployed.
bash
# Configuration example: disable remote X11 listeners on systemd-managed display managers
# /etc/gdm/custom.conf
[security]
DisallowTCP=true

# Or start Xorg manually with TCP disabled
startx -- -nolisten tcp

# Restrict firewall access to X11 ports
sudo firewall-cmd --permanent --remove-port=6000-6063/tcp
sudo firewall-cmd --reload

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechX.org

  • SeverityCRITICAL

  • CVSS Score9.1

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-125
  • Technical References
  • Red Hat CVE-2026-34000 Advisory

  • Red Hat Bugzilla Report #2451107
  • Related CVEs
  • CVE-2023-0494: X.org X Server Privilege Escalation Flaw
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