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-2023-1249

CVE-2023-1249: Linux Kernel Use-After-Free Vulnerability

CVE-2023-1249 is a use-after-free flaw in the Linux Kernel's core dump subsystem that enables local attackers to crash the system. This article covers the technical details, affected versions, and mitigation steps.

Updated: May 16, 2026

CVE-2023-1249 Overview

CVE-2023-1249 is a use-after-free [CWE-416] vulnerability in the Linux kernel's core dump subsystem. The flaw allows a local, authenticated user to trigger a kernel crash, resulting in denial of service. The issue exists in kernels that have not applied commit 390031c94211 ("coredump: Use the vma snapshot in fill_files_note"). Exploitation requires local access with low privileges and no user interaction. The vulnerability affects availability only, with no impact to confidentiality or integrity.

Critical Impact

Local users can crash the kernel through the core dump subsystem, disrupting system availability on unpatched Linux distributions.

Affected Products

  • Linux Kernel (versions prior to the inclusion of commit 390031c94211)
  • CentOS Stream 9 distributions missing the upstream fix
  • Downstream Linux distributions shipping unpatched kernel builds

Discovery Timeline

  • 2023-03-23 - CVE-2023-1249 published to NVD
  • 2025-03-19 - Last updated in NVD database

Technical Details for CVE-2023-1249

Vulnerability Analysis

The vulnerability resides in the Linux kernel's coredump path, specifically in the fill_files_note function. This function records information about files mapped into a process when generating a core dump. Before the fix, fill_files_note iterated over the live virtual memory area (VMA) list without holding consistent state. Concurrent modifications to the process address space during core dump generation could leave dangling references to freed VMA structures. Dereferencing those freed objects produces a use-after-free condition that destabilizes the kernel.

The upstream remediation, commit 390031c94211, switches fill_files_note to consume the pre-built VMA snapshot taken earlier in the coredump flow. Operating on the snapshot removes the race window because the data is no longer subject to concurrent teardown.

Root Cause

The root cause is unsynchronized access to VMA structures during core dump generation. The kernel freed VMAs that fill_files_note still referenced, satisfying the classic use-after-free pattern described by [CWE-416]. Successful triggering crashes the kernel rather than yielding code execution, consistent with the availability-only impact.

Attack Vector

Exploitation is local. An attacker with the ability to execute code as an unprivileged user induces a crashing process that produces a core dump while simultaneously manipulating the process address space. Timing the address space changes against the coredump path triggers the freed-memory dereference. No network access, no elevated privileges, and no user interaction are required.

No public proof-of-concept is referenced in the advisory data, and the issue is not listed in the CISA Known Exploited Vulnerabilities catalog. See the Kernel Patch Submission Discussion for upstream technical details.

Detection Methods for CVE-2023-1249

Indicators of Compromise

  • Unexpected kernel oops or panic entries in dmesg or /var/log/messages referencing fill_files_note or the coredump path.
  • Repeated process crashes from a single unprivileged user followed by kernel instability.
  • Core dump generation events correlated in time with kernel fault traces.

Detection Strategies

  • Inventory running kernel versions and compare against vendor advisories to identify hosts missing commit 390031c94211.
  • Audit kernel crash telemetry for stack traces involving do_coredump, elf_core_dump, or fill_files_note.
  • Monitor for abnormal volumes of SIGSEGV or SIGABRT events from non-privileged accounts that produce core files.

Monitoring Recommendations

  • Forward kernel ring buffer messages and kdump artifacts to a centralized log platform for analysis.
  • Alert on host availability drops, unplanned reboots, or kdump captures on Linux systems running susceptible kernels.
  • Track use of prctl(PR_SET_DUMPABLE) and core pattern modifications by unprivileged processes.

How to Mitigate CVE-2023-1249

Immediate Actions Required

  • Apply the upstream Linux kernel fix that introduces commit 390031c94211 ("coredump: Use the vma snapshot in fill_files_note").
  • Update to a distribution kernel package that backports the patch, prioritizing systems exposed to multi-tenant or untrusted local users.
  • Reboot affected hosts after kernel package installation so the patched image becomes active.

Patch Information

The authoritative fix is upstream Linux kernel commit 390031c94211. Refer to the Kernel Patch Submission Discussion and the Packet Storm Security Advisory for distribution-specific guidance. CentOS Stream 9 administrators should verify their installed kernel includes the backport.

Workarounds

  • Disable core dump generation for untrusted workloads by setting ulimit -c 0 or configuring /proc/sys/kernel/core_pattern to discard dumps.
  • Restrict local shell access on multi-user systems to reduce the population of accounts able to trigger the race.
  • Apply seccomp or process limits that constrain unprivileged users from rapidly creating crashing children that emit core files.
bash
# Configuration example: disable core dumps system-wide until patched
echo '* hard core 0' | sudo tee -a /etc/security/limits.conf
sudo sysctl -w kernel.core_pattern=/dev/null
sudo sysctl -w fs.suid_dumpable=0

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

  • Vulnerability Details
  • TypeUse After Free

  • Vendor/TechLinux Kernel

  • SeverityMEDIUM

  • CVSS Score5.5

  • EPSS Probability0.05%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-416
  • Technical References
  • Packet Storm Security Advisory

  • Kernel Patch Submission Discussion
  • Related CVEs
  • CVE-2026-46330: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-46323: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-46319: Linux Kernel Use-After-Free Vulnerability

  • CVE-2026-46313: Linux Kernel Use-After-Free 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