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-43750

CVE-2022-43750: Linux Kernel Privilege Escalation Flaw

CVE-2022-43750 is a privilege escalation vulnerability in the Linux Kernel usbmon component that allows user-space clients to corrupt monitor memory. This article covers technical details, affected versions, and mitigations.

Published: February 18, 2026

CVE-2022-43750 Overview

A memory corruption vulnerability exists in the Linux kernel's USB monitor (usbmon) subsystem, specifically in drivers/usb/mon/mon_bin.c. This flaw allows a user-space client to corrupt the monitor's internal memory by exploiting improper memory mapping permissions. The vulnerability affects Linux kernel versions before 5.19.15 and 6.x versions before 6.0.1.

Critical Impact

Local attackers with elevated privileges can corrupt kernel memory through improperly configured memory-mapped regions, potentially leading to privilege escalation, system instability, or arbitrary code execution in kernel context.

Affected Products

  • Linux Kernel versions prior to 5.19.15
  • Linux Kernel 6.x versions prior to 6.0.1
  • Debian Linux 10.0

Discovery Timeline

  • 2022-10-26 - CVE-2022-43750 published to NVD
  • 2025-05-07 - Last updated in NVD database

Technical Details for CVE-2022-43750

Vulnerability Analysis

This vulnerability is classified as CWE-787 (Out-of-Bounds Write) and exists within the USB monitoring subsystem of the Linux kernel. The usbmon driver provides a mechanism for user-space applications to monitor USB traffic for debugging purposes. The flaw stems from the mon_bin_mmap() function in drivers/usb/mon/mon_bin.c, which handles memory mapping of the monitor's internal buffer to user space.

The vulnerability allows user-space processes to obtain writable mappings to the monitor's internal memory structures. When a privileged user-space client memory-maps the usbmon buffer with write permissions, they can corrupt critical kernel data structures used by the monitoring subsystem. This corruption could lead to memory safety violations, denial of service conditions, or potentially enable further exploitation for privilege escalation.

Root Cause

The root cause lies in the failure to enforce read-only permissions on memory-mapped regions in the usbmon driver. Prior to the patch, the mon_bin_mmap() function did not validate or restrict the VM_WRITE flag when user-space applications requested memory mappings. This oversight allowed writable mappings to kernel memory that should have been strictly read-only, violating the intended security model of the USB monitoring interface.

Attack Vector

Exploitation requires local access and elevated privileges. An attacker with appropriate privileges can:

  1. Open the usbmon device file (typically /dev/usbmon*)
  2. Request a memory mapping with write permissions using mmap() with PROT_WRITE
  3. Directly modify the mapped kernel memory regions
  4. Corrupt internal data structures used by the USB monitoring subsystem

The attack vector is local, requiring an authenticated user with sufficient privileges to access the usbmon device, which is typically restricted to root or users in specific groups.

c
 {
 	/* don't do anything here: "fault" will set up page table entries */
 	vma->vm_ops = &mon_bin_vm_ops;

+	if (vma->vm_flags & VM_WRITE)
+		return -EPERM;
+
+	vma->vm_flags &= ~VM_MAYWRITE;
 	vma->vm_flags |= VM_DONTEXPAND | VM_DONTDUMP;
 	vma->vm_private_data = filp->private_data;
 	mon_bin_vma_open(vma);

Source: GitHub Linux Commit a659daf63d

The patch adds explicit checks to reject write mappings (VM_WRITE) with -EPERM and clears the VM_MAYWRITE flag to prevent subsequent write permission upgrades.

Detection Methods for CVE-2022-43750

Indicators of Compromise

  • Unusual access patterns to /dev/usbmon* device files with write operations
  • Kernel log messages indicating memory corruption or unexpected behavior in the usbmon subsystem
  • System instability or crashes related to USB monitoring functionality
  • Privilege escalation attempts following usbmon device access

Detection Strategies

  • Monitor for mmap() system calls targeting usbmon devices with PROT_WRITE flags using auditd or kernel tracing
  • Implement file integrity monitoring on kernel modules and usbmon-related kernel objects
  • Deploy kernel-level monitoring to detect anomalous memory access patterns in USB subsystem regions
  • Use SentinelOne's Linux agent to detect behavioral indicators associated with kernel memory corruption attempts

Monitoring Recommendations

  • Enable audit rules for access to /dev/usbmon* devices: auditctl -w /dev/usbmon0 -p rwxa
  • Monitor kernel logs for usbmon-related errors or warnings using syslog aggregation
  • Implement real-time alerting for privileged processes accessing USB monitoring interfaces
  • Deploy endpoint detection solutions capable of monitoring kernel-level activity

How to Mitigate CVE-2022-43750

Immediate Actions Required

  • Update Linux kernel to version 5.19.15 or later for the 5.x branch
  • Update Linux kernel to version 6.0.1 or later for the 6.x branch
  • Restrict access to /dev/usbmon* devices using appropriate file permissions and group membership
  • Consider disabling the usbmon module if USB debugging functionality is not required

Patch Information

The vulnerability has been addressed in upstream Linux kernel commits. The fix (commit a659daf63d16aa883be42f3f34ff84235c302198) enforces read-only memory mappings for the usbmon buffer by rejecting write requests and clearing the VM_MAYWRITE flag.

Patch resources:

  • Linux Kernel ChangeLog 5.19.15
  • Linux Kernel ChangeLog 6.0.1
  • Linux Git Commit a659daf63d

For Debian systems, consult the Debian LTS Announcement November 2022 and Debian LTS Announcement December 2022 for distribution-specific updates.

Workarounds

  • Disable the usbmon kernel module if not required: modprobe -r usbmon and blacklist in /etc/modprobe.d/
  • Restrict device access permissions: chmod 600 /dev/usbmon*
  • Limit access to trusted users only through group-based access controls
  • Implement mandatory access control policies (SELinux/AppArmor) to restrict usbmon device access
bash
# Configuration example
# Disable usbmon module
echo "blacklist usbmon" >> /etc/modprobe.d/blacklist-usbmon.conf
modprobe -r usbmon

# Restrict device permissions if module must remain loaded
chmod 600 /dev/usbmon*
chown root:root /dev/usbmon*

# Add udev rule for persistent permissions
echo 'KERNEL=="usbmon*", MODE="0600", OWNER="root", GROUP="root"' > /etc/udev/rules.d/99-usbmon-restrict.rules
udevadm control --reload-rules

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

  • Vulnerability Details
  • TypePrivilege Escalation

  • Vendor/TechLinux Kernel

  • SeverityMEDIUM

  • CVSS Score6.7

  • EPSS Probability0.07%

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

  • Debian LTS Announcement December 2022
  • Vendor Resources
  • Linux Kernel ChangeLog 5.19.15

  • Linux Kernel ChangeLog 6.0.1

  • Linux Git Commit a659daf63d

  • GitHub Linux Commit a659daf63d
  • Related CVEs
  • CVE-2026-43055: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-43052: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-31724: Linux Kernel Privilege Escalation Flaw

  • CVE-2026-31735: Linux Kernel Privilege Escalation Flaw
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