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-2021-3348

CVE-2021-3348: Linux Kernel Use-After-Free Vulnerability

CVE-2021-3348 is a use-after-free flaw in the Linux Kernel nbd driver that allows local attackers to exploit the system during device setup. This article covers technical details, affected versions, security impact, and mitigation.

Published: February 25, 2026

CVE-2021-3348 Overview

CVE-2021-3348 is a use-after-free vulnerability in the Linux kernel's Network Block Device (NBD) driver. The flaw exists in the nbd_add_socket function within drivers/block/nbd.c and can be triggered through an ndb_queue_rq use-after-free condition. Local attackers with access to the NBD device can exploit this vulnerability by issuing an I/O request at a specific point during device setup, potentially leading to privilege escalation or system compromise.

Critical Impact

Local attackers with NBD device access can exploit this race condition to achieve code execution with kernel privileges, potentially gaining complete control over affected Linux systems.

Affected Products

  • Linux Kernel through version 5.10.12
  • Debian Linux 9.0
  • Systems using the NBD (Network Block Device) driver

Discovery Timeline

  • 2021-02-01 - CVE-2021-3348 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2021-3348

Vulnerability Analysis

This vulnerability is classified as CWE-362 (Race Condition). The flaw exists in the NBD driver's socket handling mechanism during device configuration. When a local user with access to the NBD device triggers an I/O request at a precise moment during the device setup process, the driver may reference memory that has already been freed, resulting in a use-after-free condition.

The vulnerability requires local access to the NBD device, which limits the attack surface. However, in environments where users have access to NBD devices—such as containerized environments or systems using NBD for remote storage—this vulnerability poses a significant risk. Successful exploitation could allow an attacker to execute arbitrary code with kernel privileges, potentially leading to complete system compromise.

Root Cause

The root cause lies in improper synchronization between socket addition operations and I/O request handling in the NBD driver. The nbd_add_socket function does not adequately protect against concurrent access during the device setup phase. When an I/O request arrives via nbd_queue_rq while socket configuration is in progress, the driver may attempt to use a socket structure that has been freed, creating a race condition that results in use-after-free.

Attack Vector

The attack requires local access to the system with permissions to interact with NBD devices. The attacker must carefully time an I/O request to coincide with the socket addition process during NBD device setup. This race condition can be exploited by:

  1. Initiating NBD device configuration
  2. Rapidly sending I/O requests during the setup phase
  3. Triggering the race condition where freed memory is accessed
  4. Leveraging the corrupted memory state for privilege escalation

The local attack vector and high complexity requirements mean exploitation typically requires sophisticated timing and repeated attempts.

Detection Methods for CVE-2021-3348

Indicators of Compromise

  • Kernel crash reports or OOPS messages referencing nbd_queue_rq or nbd_add_socket functions
  • Unexpected system instability when using NBD devices
  • Suspicious local user activity targeting /dev/nbd* devices
  • Memory corruption signatures in kernel logs related to the NBD subsystem

Detection Strategies

  • Monitor kernel logs for use-after-free warnings or NBD driver errors
  • Implement auditd rules to track access to NBD device files
  • Deploy kernel integrity monitoring to detect exploitation attempts
  • Use SentinelOne Singularity Platform for real-time kernel-level threat detection

Monitoring Recommendations

  • Enable kernel address sanitizer (KASAN) in development environments to detect memory corruption
  • Configure syslog monitoring for NBD-related error messages
  • Implement process monitoring for unusual NBD device interactions
  • Review system call traces for suspicious patterns involving NBD operations

How to Mitigate CVE-2021-3348

Immediate Actions Required

  • Update the Linux kernel to a patched version that addresses commit b98e762e3d71e893b221f871825dc64694cfb258
  • Restrict access to NBD devices to only trusted users and processes
  • Consider disabling the NBD kernel module if not required in your environment
  • Apply vendor-specific patches from Debian or your distribution's security repository

Patch Information

The vulnerability has been addressed in the Linux kernel through commit b98e762e3d71. Debian has released security updates for affected versions as detailed in their LTS announcement. Additional technical discussion is available on the Openwall security mailing list.

Organizations should prioritize updating to kernel versions released after February 2021 that include this fix.

Workarounds

  • Blacklist the NBD kernel module using modprobe.conf if NBD functionality is not required
  • Implement strict device permission controls to limit NBD access to root only
  • Use SELinux or AppArmor policies to restrict NBD device access
  • Isolate systems requiring NBD functionality in network segments with limited user access
bash
# Configuration example
# Disable NBD module loading by blacklisting
echo "blacklist nbd" | sudo tee /etc/modprobe.d/disable-nbd.conf

# Remove currently loaded NBD module if not in use
sudo modprobe -r nbd

# Restrict NBD device permissions (if module must remain loaded)
sudo chmod 600 /dev/nbd*

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

  • 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-362
  • Technical References
  • Debian LTS Announcement
  • Vendor Resources
  • Openwall Security Mailing List Post

  • Linux Kernel Commit Notification

  • Openwall Security Mailing List Post
  • Related CVEs
  • CVE-2026-31414: Linux Kernel Use-After-Free Vulnerability

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

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

  • CVE-2026-31419: 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