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

CVE-2022-1734: Linux Kernel Use-After-Free Vulnerability

CVE-2022-1734 is a use-after-free flaw in the Linux Kernel NFC driver that occurs due to lack of synchronization between cleanup and firmware download routines. This article covers technical details, affected versions, and mitigations.

Published: February 17, 2026

CVE-2022-1734 Overview

A use-after-free vulnerability exists in the Linux Kernel within the nfcmrvl_nci_unregister_dev() function located in drivers/nfc/nfcmrvl/main.c. This flaw occurs due to improper synchronization between the cleanup routine and the firmware download routine, potentially allowing both read and write operations on freed memory.

Critical Impact

Local attackers with low privileges can exploit this use-after-free condition to achieve arbitrary code execution, escalate privileges, or cause system instability through memory corruption.

Affected Products

  • Linux Kernel (versions prior to 5.18 and release candidates 5.18-rc1 through 5.18-rc5)
  • Debian Linux 9.0 and 10.0
  • NetApp H300S, H500S, H700S, H300E, H500E, H700E, H410S, and H410C (firmware)

Discovery Timeline

  • May 18, 2022 - CVE-2022-1734 published to NVD
  • November 21, 2024 - Last updated in NVD database

Technical Details for CVE-2022-1734

Vulnerability Analysis

This use-after-free vulnerability stems from a race condition in the NFC Marvell driver's device unregistration process. When the nfcmrvl_nci_unregister_dev() function is called, destructive operations are performed in an order that creates a window where the firmware download routine can access memory that has already been freed.

The vulnerability is particularly concerning because it affects the NFC subsystem, which handles Near Field Communication operations. The race condition arises when a device cleanup occurs while firmware download is still in progress, leading to potential access of deallocated memory structures.

Successful exploitation requires local access and the ability to trigger the race condition between the cleanup and firmware download routines. An attacker could leverage this vulnerability to execute arbitrary code in kernel context, escalate privileges, or cause denial of service through kernel panic.

Root Cause

The root cause of CVE-2022-1734 is improper ordering of destructive operations in the nfcmrvl_nci_unregister_dev() function. Specifically, the code failed to unregister the NCI device before checking and aborting any ongoing firmware download operations. This ordering allowed a race condition where the firmware download routine could continue accessing device structures after they had been partially cleaned up, resulting in use-after-free conditions.

Attack Vector

The attack vector for CVE-2022-1734 is local, requiring an attacker to have local access to a system running a vulnerable Linux kernel with the NFC Marvell driver loaded. The attacker must be able to trigger the race condition between device unregistration and firmware download. This could be achieved by:

  1. Initiating an NFC firmware download operation
  2. Simultaneously triggering device unregistration or removal
  3. Exploiting the timing window to access freed memory structures

The fix reorders the operations to ensure nci_unregister_device() is called before checking firmware download status:

c
{
	struct nci_dev *ndev = priv->ndev;

+	nci_unregister_device(ndev);
	if (priv->ndev->nfc_dev->fw_download_in_progress)
		nfcmrvl_fw_dnld_abort(priv);

Source: GitHub Linux Commit Change

Detection Methods for CVE-2022-1734

Indicators of Compromise

  • Unexpected kernel panics or oops messages referencing nfcmrvl or NFC-related functions
  • Memory corruption errors in kernel logs related to the NFC subsystem
  • Suspicious process activity attempting to interact with NFC devices during system changes
  • Kernel crash dumps showing use-after-free in drivers/nfc/nfcmrvl/ code paths

Detection Strategies

  • Monitor kernel logs for use-after-free warnings or errors related to the nfcmrvl driver module
  • Implement kernel runtime detection mechanisms such as KASAN (Kernel Address Sanitizer) to detect memory access violations
  • Deploy endpoint detection solutions capable of monitoring kernel-level memory operations and anomalies
  • Track NFC device registration and unregistration events for unusual timing patterns

Monitoring Recommendations

  • Enable kernel auditing for NFC subsystem operations and device state changes
  • Implement system integrity monitoring to detect unauthorized kernel module loading or manipulation
  • Configure alerts for kernel crash events specifically related to NFC drivers
  • Monitor for privilege escalation attempts following NFC-related system activity

How to Mitigate CVE-2022-1734

Immediate Actions Required

  • Update the Linux kernel to a patched version that includes commit d270453a0d9ec10bb8a802a142fb1b3601a83098
  • Apply vendor-specific patches from Debian (DSA-5173) or NetApp security advisories as applicable
  • If immediate patching is not possible, consider blacklisting the nfcmrvl kernel module if NFC functionality is not required
  • Monitor systems for signs of exploitation while patching is in progress

Patch Information

The vulnerability has been addressed in the upstream Linux kernel through commit d270453a0d9ec10bb8a802a142fb1b3601a83098, which reorders destructive operations in nfcmrvl_nci_unregister_dev() to ensure proper synchronization. The fix ensures that nci_unregister_device() is called before checking the firmware download status, eliminating the race condition.

Downstream distributions have released their own patches:

  • Debian Security Advisory DSA-5173
  • Debian LTS Announcement
  • NetApp Security Advisory

Workarounds

  • Blacklist the nfcmrvl kernel module to prevent it from loading if NFC functionality is not required
  • Restrict local access to trusted users only to limit the attack surface
  • Implement mandatory access control policies (SELinux/AppArmor) to restrict NFC device access
  • Disable NFC hardware at the BIOS/UEFI level if the functionality is not needed
bash
# Blacklist nfcmrvl module to prevent loading
echo "blacklist nfcmrvl" >> /etc/modprobe.d/blacklist-nfc.conf
echo "install nfcmrvl /bin/false" >> /etc/modprobe.d/blacklist-nfc.conf

# Unload module if currently loaded
modprobe -r nfcmrvl

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

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

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

  • NetApp Security Advisory

  • Debian Security Advisory DSA-5173
  • Vendor Resources
  • Openwall OSS-Security Discussion

  • Openwall OSS-Security Update

  • GitHub Linux Commit Change
  • Related CVEs
  • CVE-2026-31475: Linux Kernel Use-After-Free Vulnerability

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

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

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