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-2025-71073

CVE-2025-71073: Linux Kernel Use-After-Free Vulnerability

CVE-2025-71073 is a use-after-free flaw in the Linux kernel lkkbd input driver that can allow work handlers to access freed memory. This post covers the technical details, affected versions, security impact, and mitigation.

Updated: January 22, 2026

CVE-2025-71073 Overview

A use-after-free vulnerability has been discovered in the Linux kernel's lkkbd (LK keyboard) input driver. The vulnerability exists in the interaction between the lkkbd_interrupt() function, which schedules work via schedule_work(), and the disconnect/error handling paths in the driver. When lkkbd_disconnect() is called or an error occurs in lkkbd_connect(), the lkkbd structure can be freed while pending work is still scheduled, potentially allowing the lkkbd_reinit() work handler to access freed memory.

Critical Impact

This use-after-free vulnerability in the Linux kernel input subsystem could potentially be exploited for local privilege escalation or denial of service on affected systems.

Affected Products

  • Linux kernel with lkkbd driver enabled
  • Systems using LK (DEC LK201/LK401) keyboard hardware
  • Various Linux distributions running vulnerable kernel versions

Discovery Timeline

  • 2026-01-13 - CVE CVE-2025-71073 published to NVD
  • 2026-01-13 - Last updated in NVD database

Technical Details for CVE-2025-71073

Vulnerability Analysis

The vulnerability stems from a race condition in the work scheduling mechanism of the lkkbd input driver. The lkkbd_interrupt() function schedules the lkkbd_reinit() work handler via schedule_work() on the lk->tq work queue. The work handler subsequently dereferences the lkkbd structure and its associated serio and input_dev fields.

The critical issue occurs during device disconnection or when error conditions arise during device connection. In both lkkbd_disconnect() and the error paths in lkkbd_connect(), the lkkbd structure is freed without properly ensuring that the reinit work cannot be re-queued after serio_close() returns. This creates a window where the work handler may execute after the underlying data structure has already been deallocated.

Root Cause

The root cause is improper synchronization between the work queue scheduling and the device cleanup path. The original code used cancel_work_sync() which cancels pending work but does not prevent the work from being re-queued. During the window between cancel_work_sync() returning and serio_close() completing, new work items could be scheduled that would later attempt to access the freed lkkbd structure.

Attack Vector

An attacker with physical access to the system or the ability to trigger device disconnect/reconnect events could potentially exploit this vulnerability. The attack would require timing the device disconnection to occur while scheduled work is pending, causing the work handler to access freed memory. This could lead to kernel memory corruption, information disclosure, or potentially privilege escalation depending on what data occupies the freed memory region.

The vulnerability requires local access and interaction with the input subsystem. While not remotely exploitable, it represents a serious risk in environments where attackers have physical access or can manipulate hardware events.

Detection Methods for CVE-2025-71073

Indicators of Compromise

  • Kernel oops or panic messages referencing lkkbd_reinit or lkkbd_disconnect
  • Unexpected system crashes when disconnecting LK keyboard devices
  • Kernel log entries indicating use-after-free detection in KASAN-enabled kernels
  • Unusual kernel memory corruption warnings in the input subsystem

Detection Strategies

  • Enable Kernel Address Sanitizer (KASAN) to detect use-after-free accesses at runtime
  • Monitor kernel logs for oops messages related to the lkkbd driver module
  • Implement kernel crash dump analysis for post-incident investigation
  • Deploy endpoint detection solutions capable of monitoring kernel-level anomalies

Monitoring Recommendations

  • Enable and review dmesg output for input subsystem errors
  • Configure crash dump collection for kernel panics
  • Monitor for unusual patterns in device connect/disconnect events
  • Implement alerting on kernel module loading and unloading activities

How to Mitigate CVE-2025-71073

Immediate Actions Required

  • Apply the kernel patches from the stable kernel git repositories
  • Update to a patched Linux kernel version as soon as available from your distribution
  • If the lkkbd driver is not required, consider blacklisting the module
  • Monitor systems for signs of exploitation until patches can be applied

Patch Information

The fix involves replacing cancel_work_sync() with disable_work_sync() to ensure that the reinit work cannot be re-queued after cancellation. This change is applied in both lkkbd_disconnect() and in the lkkbd_connect() error paths after serio_open() is called.

The patches are available in the following kernel git commits:

  • Kernel Git Commit 3a7cd1397c20
  • Kernel Git Commit cffc4e29b1e2
  • Kernel Git Commit e58c88f0cb2d

Workarounds

  • Blacklist the lkkbd module if LK keyboard support is not required using modprobe.blacklist=lkkbd
  • Avoid connecting/disconnecting LK keyboard devices on affected systems
  • Limit physical access to systems until patches can be applied
  • Enable KASAN for development/testing environments to detect exploitation attempts
bash
# Configuration example
# Blacklist the lkkbd module to prevent loading
echo "blacklist lkkbd" | sudo tee /etc/modprobe.d/lkkbd-blacklist.conf

# Unload the module if currently loaded
sudo modprobe -r lkkbd

# Verify module is not loaded
lsmod | grep lkkbd

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

  • SeverityNONE

  • CVSS ScoreN/A

  • Known ExploitedNo
  • Impact Assessment
  • ConfidentialityNone
  • IntegrityNone
  • AvailabilityNone
  • Technical References
  • Kernel Git Commit Note

  • Kernel Git Commit Note

  • Kernel Git Commit Note
  • Related CVEs
  • CVE-2026-23462: Linux Kernel Use-After-Free Vulnerability

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

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

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