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

CVE-2022-3061: Linux Kernel i740 Driver DoS Vulnerability

CVE-2022-3061 is a denial of service flaw in the Linux Kernel i740 driver caused by improper validation of the pixclock value, leading to divide by zero errors. This article covers technical details, affected versions, and mitigations.

Published: February 17, 2026

CVE-2022-3061 Overview

CVE-2022-3061 is a divide by zero vulnerability found in the Linux Kernel's i740 graphics driver. The flaw exists because userspace programs can pass arbitrary values to the driver through the ioctl() interface without proper validation. Specifically, the driver fails to validate the pixclock parameter, allowing a malicious local user to trigger a divide by zero error, resulting in a denial of service condition.

Critical Impact

Local attackers with low privileges can cause a system crash or denial of service by passing a zero value to the pixclock parameter in the i740 driver, triggering a kernel panic.

Affected Products

  • Linux Kernel 5.18-rc5
  • Debian Linux 10.0
  • Debian Linux 11.0

Discovery Timeline

  • 2022-09-01 - CVE-2022-3061 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2022-3061

Vulnerability Analysis

This vulnerability represents a classic input validation failure in the Linux kernel's framebuffer device (fbdev) subsystem, specifically within the Intel i740 graphics driver. The i740 driver exposes an ioctl() interface that allows userspace applications to configure display parameters such as screen resolution and pixel clock frequencies.

When a userspace program invokes the ioctl() system call to set display parameters, the driver accepts the pixclock value directly without performing boundary validation. If a zero value is passed for pixclock, subsequent calculations within the driver that use this value as a divisor will trigger a divide by zero exception. In kernel context, this type of arithmetic exception typically results in a kernel panic or system crash.

The attack requires local access and low privileges, as the attacker must be able to open the framebuffer device and issue ioctl commands. While the impact is limited to availability (denial of service), the ability for a low-privileged user to crash the entire system represents a significant security concern in multi-user or shared hosting environments.

Root Cause

The root cause is improper input validation (CWE-369: Divide By Zero) in the i740 driver code. The driver accepts the pixclock parameter from userspace without validating that it is non-zero before using it in division operations. This missing boundary check allows attackers to intentionally trigger arithmetic exceptions in kernel space.

Attack Vector

The attack requires local access to the system with at least low-level user privileges. An attacker can exploit this vulnerability by:

  1. Opening the i740 framebuffer device (/dev/fb*)
  2. Crafting an ioctl() call with the pixclock parameter set to zero
  3. Sending this malicious request to the driver

When the driver processes this request, it attempts to perform a calculation using pixclock as a divisor. With a zero value, this triggers a divide by zero exception in kernel space, causing a kernel panic and system crash. The attack does not require any user interaction and can be executed programmatically.

Detection Methods for CVE-2022-3061

Indicators of Compromise

  • Unexpected system crashes or kernel panics with divide by zero errors in kernel logs
  • Repeated attempts to access framebuffer devices (/dev/fb*) by unauthorized or suspicious processes
  • System log entries showing ioctl calls to i740 driver with unusual parameter values
  • Kernel oops messages referencing the i740fb driver module

Detection Strategies

  • Monitor kernel logs (dmesg, /var/log/kern.log) for divide by zero exceptions originating from the i740 driver
  • Implement auditd rules to track ioctl system calls on framebuffer devices
  • Deploy host-based intrusion detection to alert on abnormal framebuffer device access patterns
  • Use kernel tracing tools (ftrace, eBPF) to monitor i740 driver function calls

Monitoring Recommendations

  • Enable kernel crash dump collection to analyze the root cause of unexpected system crashes
  • Configure centralized logging to capture kernel panic events across all affected systems
  • Set up alerting for systems running vulnerable kernel versions that experience unexpected reboots
  • Monitor for processes attempting to open multiple framebuffer devices in rapid succession

How to Mitigate CVE-2022-3061

Immediate Actions Required

  • Update the Linux kernel to a patched version that includes the fix (commit 15cf0b82271b1823fb02ab8c377badba614d95d5)
  • For Debian 10.0 and 11.0 systems, apply the patches from DSA-5257 and Debian LTS announcement
  • If immediate patching is not possible, consider blacklisting the i740fb kernel module if not required
  • Review and restrict access to framebuffer devices using appropriate file permissions

Patch Information

The vulnerability has been addressed in the Linux kernel framebuffer subsystem. The official fix is available in the kernel git repository. The patch adds proper validation of the pixclock parameter to ensure non-zero values before performing division operations. Debian has released security updates addressing this vulnerability in DSA-5257 for stable releases and through Debian LTS for long-term support versions.

Workarounds

  • Blacklist the i740fb kernel module if the Intel i740 graphics hardware is not in use: add blacklist i740fb to /etc/modprobe.d/blacklist.conf
  • Restrict access to framebuffer devices by modifying device permissions in udev rules
  • Limit local user access to systems running vulnerable kernel versions until patching is complete
  • Consider running critical workloads in containers or VMs to isolate them from potential kernel-level crashes
bash
# Blacklist i740fb module to prevent loading
echo "blacklist i740fb" | sudo tee /etc/modprobe.d/blacklist-i740fb.conf

# Remove module if currently loaded
sudo modprobe -r i740fb

# Verify module is not loaded
lsmod | grep i740

# Update initramfs to persist changes across reboots
sudo update-initramfs -u

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

  • 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-369
  • Technical References
  • Debian LTS Announcement

  • Debian Security Advisory DSA-5257
  • Vendor Resources
  • Kernel Git Commit
  • 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