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
    • 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-2022-0433

CVE-2022-0433: Linux Kernel BPF Subsystem DOS Vulnerability

CVE-2022-0433 is a NULL pointer dereference flaw in the Linux Kernel's BPF subsystem that enables local users to crash the system. This article covers the technical details, affected versions, impact, and mitigation.

Published: February 17, 2026

CVE-2022-0433 Overview

A NULL pointer dereference vulnerability was discovered in the Linux kernel's BPF subsystem affecting the bloom filter implementation. The flaw exists in the way a user triggers the map_get_next_key function of the BPF bloom filter, allowing a local attacker to crash the system and cause a denial of service condition.

Critical Impact

Local users can exploit this vulnerability to crash the Linux kernel, causing system-wide denial of service. This affects Linux kernel versions prior to 5.17-rc1.

Affected Products

  • Linux Kernel (versions prior to 5.17-rc1)
  • Fedora 35

Discovery Timeline

  • 2022-03-10 - CVE-2022-0433 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2022-0433

Vulnerability Analysis

This vulnerability is classified under CWE-476 (NULL Pointer Dereference) and CWE-908 (Use of Uninitialized Resource). The flaw resides in the Linux kernel's Berkeley Packet Filter (BPF) subsystem, specifically within the bloom filter map implementation. BPF bloom filters are probabilistic data structures used for efficient set membership testing in kernel networking and tracing operations.

The vulnerability occurs when the map_get_next_key function is called on a BPF bloom filter map type. Bloom filters, by design, do not support iteration over their keys because they store hashed values rather than actual keys. The implementation failed to properly handle this unsupported operation, leading to a NULL pointer dereference when a user attempts to invoke this function.

Root Cause

The root cause stems from the bloom filter map type lacking a proper implementation or validation for the map_get_next_key callback function. When this operation is requested on a bloom filter map, the kernel attempts to dereference a NULL function pointer or an uninitialized callback, resulting in a kernel panic. The bloom filter map type was introduced without ensuring all required map operation callbacks were properly defined or that unsupported operations returned appropriate error codes.

Attack Vector

The attack requires local access to the system with the ability to interact with the BPF subsystem. An attacker needs sufficient privileges to create BPF maps (typically requiring CAP_SYS_ADMIN or CAP_BPF capabilities, or access through unprivileged BPF if enabled). The exploitation sequence involves creating a BPF bloom filter map using the bpf() syscall and then invoking the BPF_MAP_GET_NEXT_KEY command on the created map. This triggers the NULL pointer dereference within the kernel, causing an immediate system crash.

The attack is relatively straightforward for users with appropriate permissions and does not require user interaction. While the impact is limited to availability (denial of service), it can be particularly disruptive in multi-tenant environments or containerized deployments where BPF access may be available to less-privileged users.

Detection Methods for CVE-2022-0433

Indicators of Compromise

  • Kernel panic or system crash events with stack traces referencing BPF bloom filter operations or map_get_next_key
  • Unexpected system reboots or kernel oops messages in /var/log/kern.log or dmesg output
  • Audit logs showing BPF syscall activity followed by system instability

Detection Strategies

  • Monitor for BPF-related kernel panics using crash dump analysis tools like kdump or crash
  • Implement audit rules for BPF syscalls: auditctl -a always,exit -F arch=b64 -S bpf -k bpf_activity
  • Deploy kernel security modules like SELinux or AppArmor to restrict BPF access to authorized users
  • Use SentinelOne's kernel-level telemetry to detect anomalous BPF activity patterns

Monitoring Recommendations

  • Enable kernel crash dump collection to capture forensic evidence of exploitation attempts
  • Configure centralized logging for kernel messages to correlate potential attack patterns across infrastructure
  • Monitor for processes attempting to create BPF maps with bloom filter type followed by iteration operations

How to Mitigate CVE-2022-0433

Immediate Actions Required

  • Update the Linux kernel to version 5.17-rc1 or later, which contains the fix for this vulnerability
  • If immediate patching is not possible, restrict BPF access using kernel configuration (CONFIG_BPF_UNPRIV_DEFAULT_OFF=y) or sysctl settings
  • Review and limit user capabilities to prevent unauthorized BPF subsystem access

Patch Information

The vulnerability has been addressed in the upstream Linux kernel through commit 3ccdcee28415c4226de05438b4d89eb5514edf73. This fix ensures that the bloom filter map type properly handles the unsupported map_get_next_key operation by returning an appropriate error code instead of dereferencing a NULL pointer.

For detailed patch information, refer to the Kernel Git Commit Update and the Red Hat Bug Report.

Workarounds

  • Disable unprivileged BPF access by setting kernel.unprivileged_bpf_disabled=1 via sysctl
  • Remove CAP_BPF and CAP_SYS_ADMIN capabilities from untrusted users and processes
  • Use container security policies to prevent BPF access from containerized workloads
bash
# Disable unprivileged BPF access
sysctl -w kernel.unprivileged_bpf_disabled=1

# Make the setting persistent across reboots
echo "kernel.unprivileged_bpf_disabled=1" >> /etc/sysctl.conf

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.04%

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

  • CWE-476
  • Technical References
  • BPF Mailing List Discussion
  • Vendor Resources
  • Red Hat Bug Report

  • Kernel Git Commit Update
  • Related CVEs
  • CVE-2026-23446: Linux Kernel aqc111 Driver DoS Vulnerability

  • CVE-2026-23451: Linux Kernel Bonding Driver DoS Flaw

  • CVE-2026-23460: Linux Kernel ROSE Protocol DoS Vulnerability

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