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

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

CVE-2023-1077 is a use-after-free flaw in Linux Kernel's pick_next_rt_entity() function that causes type confusion and memory corruption. This article covers technical details, affected versions, security impact, and mitigation.

Published: February 4, 2026

CVE-2023-1077 Overview

A type confusion vulnerability exists in the Linux kernel's real-time (RT) scheduler subsystem. The pick_next_rt_entity() function may return a type confused entry that is not properly detected by the BUG_ON condition. This occurs because the confused entry is not NULL but rather a list_head structure, which then gets incorrectly used as a sched_rt_entity, leading to memory corruption.

Critical Impact

Local attackers with low privileges can exploit this vulnerability to cause memory corruption, potentially leading to privilege escalation or system compromise on affected Linux systems.

Affected Products

  • Linux Kernel (multiple versions)
  • Debian Linux 10.0
  • NetApp A700s, 8300, 8700, A400, C400 series firmware
  • NetApp H300s, H500s, H700s, H410s, H410c series firmware

Discovery Timeline

  • March 27, 2023 - CVE-2023-1077 published to NVD
  • November 21, 2024 - Last updated in NVD database

Technical Details for CVE-2023-1077

Vulnerability Analysis

This vulnerability represents a type confusion flaw (CWE-843) within the Linux kernel's real-time scheduling mechanism. The root issue lies in the pick_next_rt_entity() function, which is responsible for selecting the next schedulable entity in the RT scheduling class. Under certain conditions, this function can return a pointer that represents a list_head structure rather than the expected sched_rt_entity structure.

The kernel's existing safety check using BUG_ON fails to detect this condition because it only validates whether the returned pointer is NULL. Since the type confused entry is a valid non-NULL pointer (pointing to a list_head), the check passes, and the kernel proceeds to treat this memory region as a sched_rt_entity structure.

This type confusion allows subsequent operations on what the kernel believes is a scheduling entity to actually manipulate unrelated kernel memory structures, potentially enabling an attacker to corrupt critical kernel data structures.

Root Cause

The vulnerability stems from insufficient type validation in the RT scheduler's entity selection logic. The BUG_ON condition was designed to catch NULL pointer returns but did not account for the possibility of a type confused entry being returned. The list_head structure shares some characteristics with valid scheduler entities (non-NULL pointer), allowing it to bypass the safety check while being fundamentally incompatible with the expected data layout.

Attack Vector

Exploitation requires local access to the system with at least low-level user privileges. An attacker would need to manipulate the scheduling state to trigger the condition where pick_next_rt_entity() returns a type confused entry. Due to the high attack complexity required to reliably trigger this race condition in the scheduler, exploitation is non-trivial but achievable under certain workload conditions.

The vulnerability affects the confidentiality, integrity, and availability of the system, as memory corruption in kernel scheduler structures can lead to arbitrary read/write primitives, privilege escalation, or system crashes.

Detection Methods for CVE-2023-1077

Indicators of Compromise

  • Unexpected kernel panics or crashes related to the RT scheduler subsystem
  • Anomalous behavior in processes using real-time scheduling policies (SCHED_FIFO, SCHED_RR)
  • Kernel log messages indicating memory corruption or invalid scheduler entity access
  • Unexpected changes to process privileges or security contexts

Detection Strategies

  • Monitor kernel logs for scheduler-related oops, panics, or BUG() assertions
  • Implement runtime integrity monitoring for kernel memory structures
  • Deploy kernel-level endpoint detection that can identify anomalous scheduler behavior
  • Use SentinelOne's behavioral AI to detect exploitation attempts targeting kernel vulnerabilities

Monitoring Recommendations

  • Enable kernel auditing for real-time scheduling system calls (sched_setscheduler, sched_setattr)
  • Monitor for unusual patterns of RT scheduling operations from non-privileged processes
  • Deploy crash dump analysis to identify scheduler-related memory corruption events
  • Implement continuous kernel integrity verification on critical systems

How to Mitigate CVE-2023-1077

Immediate Actions Required

  • Apply the latest kernel security updates from your distribution vendor
  • Review systems using real-time scheduling for potential exploitation indicators
  • Consider restricting RT scheduling capabilities to trusted processes using ulimit or cgroups
  • Prioritize patching for systems running latency-sensitive or real-time workloads

Patch Information

The vulnerability has been addressed in the upstream Linux kernel. The fix can be found in the Linux Kernel Commit. Distribution-specific patches are available through:

  • Debian LTS Advisory (May 2023)
  • Debian LTS Advisory (January 2024)
  • NetApp Security Advisory NTAP-20230511-0002

Workarounds

  • Restrict real-time scheduling privileges using sysctl kernel.sched_rt_runtime_us settings
  • Limit RT scheduling capabilities to specific users/groups via /etc/security/limits.conf
  • Use container isolation (cgroups v2) to restrict RT scheduling access for untrusted workloads
  • Consider disabling RT scheduler features if not required for your workload
bash
# Restrict RT scheduling capabilities
# Add to /etc/security/limits.conf
* hard rtprio 0
* soft rtprio 0

# Or limit RT bandwidth via sysctl
sysctl -w kernel.sched_rt_runtime_us=950000
sysctl -w kernel.sched_rt_period_us=1000000

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

  • SeverityHIGH

  • CVSS Score7.0

  • EPSS Probability0.02%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-843
  • Technical References
  • Debian LTS Advisory May 2023

  • Debian LTS Advisory January 2024

  • NetApp Security Advisory NTAP-20230511-0002
  • Vendor Resources
  • Linux Kernel Commit Update
  • Related CVEs
  • CVE-2026-23462: Linux Kernel Use-After-Free Vulnerability

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

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

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