Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-0160

CVE-2023-0160: Linux Kernel BPF Subsystem DOS Vulnerability

CVE-2023-0160 is a denial-of-service flaw in the Linux Kernel's BPF subsystem caused by a deadlock issue. Local users can exploit this to crash the system. This article covers technical details, impact, and mitigation.

Published: February 4, 2026

CVE-2023-0160 Overview

A deadlock flaw was discovered in the Linux kernel's BPF (Berkeley Packet Filter) subsystem. This vulnerability allows a local user with low privileges to potentially crash the system by triggering a deadlock condition, resulting in a denial of service. The BPF subsystem is a critical component used for network packet filtering, tracing, and security applications within the Linux kernel.

Critical Impact

Local attackers can exploit this deadlock vulnerability to cause system crashes and denial of service conditions on affected Linux systems.

Affected Products

  • Linux Kernel (multiple versions)
  • Fedora 38
  • Red Hat Enterprise Linux (affected versions)

Discovery Timeline

  • 2023-07-18 - CVE-2023-0160 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2023-0160

Vulnerability Analysis

This vulnerability is classified under CWE-833 (Deadlock) and CWE-667 (Improper Locking). The flaw exists within the Linux kernel's BPF subsystem, where improper lock management can lead to a deadlock scenario. When triggered, two or more processes become permanently blocked while waiting for resources held by each other, causing the system to become unresponsive.

The vulnerability requires local access to exploit, meaning an attacker must already have some level of access to the target system. Once exploited, the primary impact is on system availability, as the deadlock condition prevents normal system operations and can cause a complete system hang or crash.

Root Cause

The root cause of this vulnerability lies in improper locking mechanisms within the BPF subsystem of the Linux kernel. The deadlock occurs when concurrent operations attempt to acquire locks in an inconsistent order, or when lock acquisition creates circular dependencies that cannot be resolved. This improper synchronization in kernel-level code creates conditions where the kernel can enter an unrecoverable state.

Attack Vector

The attack requires local access to the system with low privileges. An attacker with user-level access can interact with the BPF subsystem through system calls to trigger the deadlock condition. No user interaction is required beyond the attacker's own actions, and the vulnerability does not allow privilege escalation or data exfiltration—its impact is strictly limited to availability through denial of service.

The vulnerability mechanism involves triggering specific BPF operations that cause improper lock acquisition sequences. For detailed technical analysis, refer to the Linux Kernel Commit ed17aa92dc56 and the Kernel Mailing List Discussion for specifics on the locking issue and its resolution.

Detection Methods for CVE-2023-0160

Indicators of Compromise

  • System hangs or becomes completely unresponsive without apparent cause
  • Kernel panic messages or watchdog timeout events in system logs
  • Processes in uninterruptible sleep state (D state) related to BPF operations
  • High CPU usage with no progress in kernel-level BPF code paths

Detection Strategies

  • Monitor for kernel soft lockup or hard lockup warnings in /var/log/kern.log or dmesg output
  • Implement watchdog monitoring to detect system hangs and trigger automatic recovery
  • Use kernel tracing tools (ftrace, perf) to monitor BPF subsystem lock acquisition patterns
  • Deploy SentinelOne agents to detect anomalous system behavior and potential exploitation attempts

Monitoring Recommendations

  • Configure kernel watchdog (nmi_watchdog) to detect and report lockup conditions
  • Enable kernel debugging options for lock debugging (CONFIG_PROVE_LOCKING, CONFIG_DEBUG_LOCK_ALLOC)
  • Set up centralized logging with alerts for kernel-level anomalies and system hangs
  • Monitor BPF-related system calls using auditd for unusual patterns of activity

How to Mitigate CVE-2023-0160

Immediate Actions Required

  • Update the Linux kernel to a patched version that includes commit ed17aa92dc56
  • Review and apply security updates from your distribution vendor (Red Hat, Fedora, etc.)
  • Restrict access to BPF functionality using seccomp filters or BPF-specific syscall restrictions
  • Limit local access to systems and review user privileges to minimize attack surface

Patch Information

The vulnerability has been addressed in the Linux kernel through commit ed17aa92dc56. This fix is available in the upstream Linux kernel repository and has been backported to supported distribution kernels. System administrators should apply kernel updates from their respective Linux distribution vendors:

  • Red Hat CVE-2023-0160 Advisory - Official Red Hat security guidance
  • Linux Kernel Commit ed17aa92dc56 - Upstream kernel patch
  • Red Hat Bug Report #2159764 - Detailed bug tracking information

Workarounds

  • Disable unprivileged BPF usage by setting kernel.unprivileged_bpf_disabled=1 via sysctl
  • Restrict BPF program loading to root users only until patches can be applied
  • Use security modules (SELinux, AppArmor) to limit which processes can access BPF functionality
  • Implement process isolation to contain potential impacts of exploitation
bash
# Configuration example - Disable unprivileged BPF access
echo 1 > /proc/sys/kernel/unprivileged_bpf_disabled

# Make persistent across reboots
echo "kernel.unprivileged_bpf_disabled = 1" >> /etc/sysctl.d/99-bpf-hardening.conf
sysctl --system

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechLinux Kernel

  • SeverityMEDIUM

  • CVSS Score5.5

  • EPSS Probability0.01%

  • 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-833

  • CWE-667
  • Technical References
  • Red Hat Bug Report #2159764
  • Vendor Resources
  • Red Hat CVE-2023-0160 Advisory

  • Linux Kernel Commit ed17aa92dc56

  • Kernel Mailing List Discussion
  • Related CVEs
  • CVE-2026-31465: Linux Kernel Writeback DoS Vulnerability

  • CVE-2026-31472: Linux Kernel IPTFS DoS Vulnerability

  • CVE-2026-31451: Linux Kernel ext4 DOS Vulnerability

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