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

CVE-2021-28714: Linux Kernel Netback Driver DoS Flaw

CVE-2021-28714 is a denial of service vulnerability in the Linux Kernel's netback driver that allows guests to force memory exhaustion. This article covers the technical details, affected versions, impact, and mitigation.

Published: February 25, 2026

CVE-2021-28714 Overview

CVE-2021-28714 is a resource exhaustion vulnerability in the Linux kernel's netback driver that allows a malicious guest VM to force the host to consume excessive kernel memory. The vulnerability exists in the packet buffering mechanism where incoming data packets for a guest are queued until the guest is ready to process them. While protective measures exist to prevent excessive data accumulation, a guest can bypass these controls by manipulating its RX queue ring page to maintain only one free slot when the next packet requires multiple slots (common with GSO, XDP, or software hashing), effectively preventing the timeout mechanism from ever triggering.

Critical Impact

A malicious guest virtual machine can exhaust host kernel memory resources, causing denial of service conditions that affect all VMs running on the hypervisor.

Affected Products

  • Linux Kernel (all affected versions)
  • Debian Linux 10.0
  • Debian Linux 11.0

Discovery Timeline

  • 2022-01-06 - CVE CVE-2021-28714 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2021-28714

Vulnerability Analysis

This vulnerability affects virtualization environments using the Xen hypervisor with Linux netback driver. The netback driver handles network packet processing between guest VMs and the host system. When a guest temporarily stops consuming network packets, the driver buffers incoming data until the guest resumes processing or a 60-second timeout expires.

The flaw allows a guest to circumvent this timeout protection entirely. When the guest's RX queue ring page has exactly one free slot remaining, and the next incoming packet requires more than one slot (which occurs with Generic Segmentation Offload, XDP processing, or software hashing), the driver cannot deliver the packet but also cannot trigger the stall timeout. This creates a condition where packets accumulate indefinitely in kernel memory without any protective mechanism activating.

Root Cause

The root cause is classified as CWE-770: Allocation of Resources Without Limits or Throttling. The netback driver's timeout-based protection mechanism contains a logic gap where the stall detection fails to trigger under specific queue state conditions. The driver assumes that if there is any free slot in the RX ring, the guest is not stalled, but it fails to account for scenarios where the available slot count is insufficient for the pending packet size.

Attack Vector

The attack requires local access from within a guest virtual machine. An attacker with access to a guest VM can exploit this vulnerability by:

  1. Configuring the guest's network stack to maintain exactly one free slot in the RX queue ring page
  2. Generating network traffic that produces packets requiring multiple slots (using GSO, XDP, or software hashing)
  3. Allowing packets to accumulate in host kernel memory without triggering stall detection
  4. Using a high-bandwidth UDP connection to rapidly fill host memory

The vulnerability can be exploited to cause denial of service against the host system, potentially affecting all co-located virtual machines.

Detection Methods for CVE-2021-28714

Indicators of Compromise

  • Abnormal kernel memory consumption on Xen hypervisor hosts
  • Network performance degradation in virtualized environments
  • Guest VMs exhibiting unusual RX queue ring page patterns
  • Kernel memory allocation failures or OOM (Out of Memory) conditions

Detection Strategies

  • Monitor kernel memory allocation patterns on Xen hosts running Linux netback driver
  • Implement alerts for unusual memory growth correlated with network traffic
  • Review guest VM network configurations for suspicious RX queue settings
  • Audit systems for unexplained memory pressure in virtualization environments

Monitoring Recommendations

  • Configure memory usage thresholds and alerts on hypervisor hosts
  • Monitor netback driver statistics for queued packet accumulation
  • Track per-guest network buffer utilization metrics
  • Implement resource usage auditing for all guest virtual machines

How to Mitigate CVE-2021-28714

Immediate Actions Required

  • Apply kernel security patches from your distribution vendor immediately
  • Review and limit network bandwidth allocated to untrusted guest VMs
  • Consider network traffic shaping to limit UDP throughput to guests
  • Monitor memory usage on affected hypervisor hosts until patching is complete

Patch Information

Security patches addressing this vulnerability have been released by major Linux distributions. Refer to the following vendor advisories for specific patch details:

  • Xen Project Advisory XSA-392 - Primary security advisory with technical details
  • Debian Security Advisory DSA-5050 - Debian stable security update
  • Debian Security Advisory DSA-5096 - Additional Debian security update
  • Debian LTS Announcement - Debian LTS security update

Workarounds

  • Reduce the netback timeout value from the default 60 seconds to a shorter duration
  • Implement strict resource quotas for guest VM memory consumption
  • Use network traffic monitoring to detect and rate-limit suspicious traffic patterns
  • Consider isolating untrusted workloads to dedicated hypervisor hosts
bash
# Example: Monitoring kernel memory on Xen hosts
# Check current memory usage
free -m

# Monitor netback driver statistics
cat /sys/class/net/vif*/statistics/rx_dropped

# Review memory pressure indicators
cat /proc/meminfo | grep -E "(MemFree|Buffers|Cached|Slab)"

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 Score6.5

  • EPSS Probability0.12%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:C/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-770
  • Technical References
  • Debian LTS Announcement #1

  • Debian LTS Announcement #2

  • Debian Security Advisory DSA-5050

  • Debian Security Advisory DSA-5096
  • Vendor Resources
  • Xen Project Advisory XSA-392
  • 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