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-2022-28733

CVE-2022-28733: GNU GRUB2 Buffer Overflow Vulnerability

CVE-2022-28733 is a buffer overflow vulnerability in GNU GRUB2 caused by an integer underflow in IP packet handling. Attackers can exploit this to write past buffer boundaries. Learn about affected versions and mitigation.

Published: February 17, 2026

CVE-2022-28733 Overview

CVE-2022-28733 is an integer underflow vulnerability in GNU GRUB2's network boot functionality. A maliciously crafted IP packet can trigger an integer underflow in the grub_net_recv_ip4_packets() function, specifically affecting the rsm->total_len value. Under certain circumstances, this total length value may wrap around to a small integer number, which is subsequently used for memory allocation. If an attacker successfully exploits this condition, subsequent operations can write past the end of the allocated buffer, potentially leading to memory corruption and code execution during the boot process.

Critical Impact

Successful exploitation could allow an attacker to execute arbitrary code during the network boot process, potentially compromising system integrity before the operating system loads and security controls are initialized.

Affected Products

  • GNU GRUB2 (all versions prior to patched releases)
  • Systems using GRUB2 for network booting (PXE boot environments)
  • Enterprise environments with centralized network boot infrastructure

Discovery Timeline

  • 2023-07-20 - CVE-2022-28733 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2022-28733

Vulnerability Analysis

This vulnerability is classified as CWE-191 (Integer Underflow). The flaw exists within the IP packet reassembly logic of GRUB2's network stack. When processing fragmented IP packets during network boot operations, the grub_net_recv_ip4_packets() function performs calculations on the total_len field without adequate boundary validation.

The integer underflow occurs when specific packet length values cause arithmetic operations to wrap around, resulting in an unexpectedly small allocation size. The network-based attack vector means that any system booting via PXE or similar network boot protocols in an untrusted network environment is potentially vulnerable.

The exploitation complexity is considered high due to the specific conditions required to trigger the underflow and achieve code execution. However, the impact is severe as successful exploitation occurs at the bootloader level, before operating system security controls are initialized.

Root Cause

The root cause is insufficient input validation when calculating memory allocation sizes for IP packet reassembly. The total_len value derived from incoming IP packets is not properly validated for boundary conditions before being used in arithmetic operations. When an attacker crafts packets with specific length values, the subtraction operations can cause the unsigned integer to underflow, wrapping around to a very small positive value.

This small value is then used to allocate a buffer that is insufficient to hold the actual packet data, setting up the conditions for a heap-based buffer overflow when the packet contents are written to the undersized buffer.

Attack Vector

The attack is network-based and can be executed by an attacker positioned on the same network segment as the target system during boot. The attack requires no authentication or user interaction, but does require precise timing and packet crafting:

  1. The attacker monitors for systems initiating network boot sequences
  2. Maliciously crafted IP packets with specific length field values are sent to the target
  3. The vulnerable GRUB2 code processes these packets and triggers the integer underflow
  4. The resulting undersized buffer allocation allows subsequent packet data to overflow the buffer
  5. Carefully crafted overflow data can achieve code execution in the bootloader context

Since no verified exploit code is available, the technical mechanism is described above. For additional technical details, refer to the OpenWall OSS-Security Discussion.

Detection Methods for CVE-2022-28733

Indicators of Compromise

  • Abnormal network traffic patterns during PXE boot sequences
  • Malformed or fragmented IP packets targeting BOOTP/DHCP/TFTP ports during boot
  • Unexpected boot failures or system crashes during network boot operations
  • Signs of bootloader modification or unexpected code execution at boot time

Detection Strategies

  • Deploy network intrusion detection systems (NIDS) to monitor for malformed IP packets in boot network segments
  • Implement packet inspection for fragmented IP traffic anomalies on PXE/network boot VLANs
  • Monitor boot logs for unexpected errors in GRUB2 network stack functions
  • Use SentinelOne endpoint protection to detect post-exploitation indicators and unauthorized boot modifications

Monitoring Recommendations

  • Isolate network boot infrastructure on dedicated, secured network segments
  • Implement continuous monitoring of DHCP and TFTP server logs for suspicious activity
  • Enable verbose GRUB2 logging where possible to capture boot-time anomalies
  • Deploy network traffic analysis tools to detect anomalous packet patterns during boot windows

How to Mitigate CVE-2022-28733

Immediate Actions Required

  • Update GRUB2 to the latest patched version provided by your Linux distribution
  • Where possible, disable network boot functionality on systems that do not require it
  • Isolate PXE boot infrastructure on trusted, segmented network environments
  • Implement Secure Boot with updated Secure Boot revocation databases (dbx) to block vulnerable GRUB2 versions

Patch Information

Organizations should apply vendor-provided patches for GRUB2 as soon as they become available. Major Linux distributions including Red Hat, Ubuntu, Debian, and SUSE have released updated packages addressing this vulnerability. Refer to the NetApp Security Advisory and your Linux distribution's security advisories for specific patch information.

Additionally, organizations using Secure Boot should ensure their firmware's Secure Boot revocation database (dbx) is updated to prevent vulnerable bootloaders from executing.

Workarounds

  • Disable network boot (PXE) in BIOS/UEFI settings for systems that do not require it
  • Implement strict network segmentation to isolate boot infrastructure from untrusted networks
  • Use 802.1X network access control on boot network segments to prevent unauthorized devices
  • Consider using alternative boot methods such as local boot media until patches are applied
bash
# Disable network boot via GRUB configuration (example)
# Add to /etc/default/grub and run update-grub
GRUB_DISABLE_NETWORK=true

# Verify GRUB2 version (check against vendor advisories for patched versions)
grub2-install --version

# Update GRUB2 on RHEL/CentOS
sudo yum update grub2

# Update GRUB2 on Debian/Ubuntu
sudo apt-get update && sudo apt-get install grub2

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

  • Vulnerability Details
  • TypeBuffer Overflow

  • Vendor/TechGnu Grub2

  • SeverityHIGH

  • CVSS Score8.1

  • EPSS Probability0.11%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-191
  • Technical References
  • MITRE CVE-2022-28733 Entry

  • NetApp Security Advisory

  • OpenWall OSS-Security Discussion
  • Related CVEs
  • CVE-2025-0689: GNU GRUB2 Buffer Overflow Vulnerability

  • CVE-2022-3775: GNU Grub2 Buffer Overflow Vulnerability

  • CVE-2022-2601: GNU GRUB2 Buffer Overflow Vulnerability

  • CVE-2022-28734: GNU GRUB2 Buffer Overflow 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