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

CVE-2026-46191: Linux Kernel Buffer Overflow Vulnerability

CVE-2026-46191 is a buffer overflow flaw in the Linux kernel's fbcon component that occurs during console rotation failures, allowing font buffer overflows. This article covers technical details, impact, and fixes.

Published: May 28, 2026

CVE-2026-46191 Overview

CVE-2026-46191 is a Linux kernel vulnerability in the framebuffer console (fbcon) subsystem. The flaw exists in the fbcon_rotate_font() function, which fails to clear the font buffer when memory reallocation during console rotation fails. The stale, undersized buffer remains active and can be accessed during subsequent rotated console output. Printing a character with a sufficiently high code value triggers an out-of-bounds read of the font buffer. The Linux kernel maintainers have released a fix across multiple stable branches.

Critical Impact

A failed reallocation during console rotation leaves an undersized font buffer in place, enabling out-of-bounds memory access when the rotated console renders high-value character codes.

Affected Products

  • Linux kernel fbcon (framebuffer console) subsystem
  • Multiple stable kernel branches receiving the backport fixes
  • Systems using rotated framebuffer consoles

Discovery Timeline

  • 2026-05-28 - CVE-2026-46191 published to NVD
  • 2026-05-28 - Last updated in NVD database

Technical Details for CVE-2026-46191

Vulnerability Analysis

The vulnerability resides in fbcon_rotate_font() within the Linux kernel framebuffer console driver. When the console is rotated, the driver attempts to reallocate a font buffer sized to fit the rotated glyph data. If that reallocation fails, the current implementation retains the old buffer rather than clearing it. The old buffer is too small to hold rotated font data for the active character set.

Subsequent rendering paths use the stale buffer pointer without re-checking its size against the active font. When the rotated console renders a character whose code exceeds the capacity of the retained buffer, the putcs implementations index past the end of the allocation. This produces an out-of-bounds read from kernel memory adjacent to the font buffer.

The upstream fix clears the font buffer when reallocation fails. With a cleared buffer, the rotated putcs implementations take their early-return path and skip rendering instead of dereferencing an undersized allocation.

Root Cause

The root cause is improper error handling on an allocation failure path. fbcon_rotate_font() did not invalidate or clear the font buffer state when krealloc-style reallocation failed, leaving the rendering path with a buffer too small for the rotated font. This is an out-of-bounds read condition triggered by a missing cleanup step.

Attack Vector

Triggering the vulnerability requires the ability to rotate the framebuffer console and write characters with high code values to that console. Successful exploitation depends on inducing an allocation failure during rotation, which typically requires either a low-memory condition or local control over kernel allocators. The resulting out-of-bounds read can disclose adjacent kernel memory or cause instability in the framebuffer subsystem.

No public exploitation code or proof-of-concept has been published for this issue. The referenced kernel mailing list discussion provides an example reproducer scenario for the buffer overflow path.

Detection Methods for CVE-2026-46191

Indicators of Compromise

  • Unexpected kernel oops or KASAN reports referencing fbcon_rotate_font or fbconputcs functions
  • Kernel log entries showing allocation failures within the framebuffer console path followed by console rendering activity
  • System instability or crashes occurring after console rotation events on systems with memory pressure

Detection Strategies

  • Audit running kernel versions across the fleet and compare against the fixed commits referenced in the kernel.org stable tree
  • Enable KASAN on test and pre-production systems to surface out-of-bounds reads in fbcon code paths
  • Review kernel logs for fbcon warnings or allocation failures that correlate with console rotation operations

Monitoring Recommendations

  • Monitor kernel ring buffer messages (dmesg) for framebuffer console errors and allocation failures
  • Track kernel package versions through configuration management to identify hosts running pre-patch kernels
  • Alert on unexpected kernel crashes that originate from graphics or console subsystems

How to Mitigate CVE-2026-46191

Immediate Actions Required

  • Apply the upstream stable kernel patches that clear the font buffer when fbcon_rotate_font() reallocation fails
  • Update to a distribution kernel that incorporates the fix commits referenced in the kernel.org stable tree
  • Restrict local access on systems that use rotated framebuffer consoles until patches are deployed

Patch Information

The Linux kernel project has merged the fix across multiple stable branches. Refer to the following commits for the corrected fbcon_rotate_font() implementation: 594973a2e549, 7105d9f1387d, ab6c34b9829d, b44cc78ff46b, and e4ef723d8975.

Workarounds

  • Avoid using console rotation on framebuffer consoles until the kernel is patched
  • Reduce exposure to local users on affected systems where the framebuffer console is in use
  • Disable the framebuffer console where it is not required, favoring alternative console drivers
bash
# Verify running kernel version and check for fbcon usage
uname -r
grep -i fbcon /proc/consoles
dmesg | grep -i fbcon

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

  • Vulnerability Details
  • TypeBuffer Overflow

  • Vendor/TechLinux

  • SeverityNONE

  • CVSS ScoreN/A

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Kernel Git Commit Update

  • Kernel Git Commit Update

  • Kernel Git Commit Update

  • Kernel Git Commit Update

  • Kernel Git Commit Update
  • Related CVEs
  • CVE-2026-46055: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-43302: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-31747: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-31748: Linux Kernel 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