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-2026-28529

CVE-2026-28529: cryptodev-linux Privilege Escalation Flaw

CVE-2026-28529 is a privilege escalation vulnerability in cryptodev-linux versions 1.14 and earlier, enabling local attackers to exploit use-after-free conditions. This article covers technical details, affected versions, and mitigations.

Published: March 27, 2026

CVE-2026-28529 Overview

CVE-2026-28529 is a use-after-free vulnerability in the cryptodev-linux kernel module that allows local privilege escalation. The flaw exists in the get_userbuf function within the /dev/crypto device driver, where improper page reference handling enables attackers to trigger dangerous memory conditions. Local users with access to the /dev/crypto interface can exploit this vulnerability by repeatedly decrementing reference counts of controlled pages, ultimately achieving elevated privileges on the system.

Critical Impact

Local attackers with access to the /dev/crypto interface can exploit this use-after-free condition to escalate privileges and gain root access on affected Linux systems running cryptodev-linux version 1.14 or earlier.

Affected Products

  • cryptodev-linux version 1.14
  • cryptodev-linux versions prior to 1.14
  • Linux systems with the /dev/crypto device driver enabled

Discovery Timeline

  • 2026-03-25 - CVE-2026-28529 published to NVD
  • 2026-03-25 - Last updated in NVD database

Technical Details for CVE-2026-28529

Vulnerability Analysis

This use-after-free vulnerability (CWE-416) exists in the cryptodev-linux kernel module's get_userbuf function. The core issue involves improper management of page reference counts when handling user-supplied buffers through the /dev/crypto interface. When the driver processes cryptographic operations, it pins user memory pages and manages their reference counts. However, a flaw in this logic allows attackers to manipulate the reference counting mechanism.

The vulnerability enables local attackers to repeatedly decrement page reference counts for memory regions they control. By carefully crafting sequences of operations against the /dev/crypto device, an attacker can force the reference count to reach zero prematurely, causing the kernel to free the page while it's still in use. Subsequent access to this freed memory creates a classic use-after-free condition.

This memory corruption primitive can be leveraged to achieve arbitrary kernel memory read/write capabilities, ultimately leading to complete system compromise through local privilege escalation to root.

Root Cause

The root cause lies in the get_userbuf function's failure to properly track and synchronize page reference counts during cryptographic operations. When user buffers are pinned for kernel access, the reference counting logic does not adequately prevent underflow conditions. This allows an attacker to craft specific sequences of cryptographic requests that cause reference counts to be decremented more times than they were incremented, resulting in premature page deallocation.

Attack Vector

This is a local attack vector requiring the attacker to have user-level access to the system and the ability to interact with the /dev/crypto device interface. The attack follows this general pattern:

  1. Initial Access: Attacker gains local user access to a system with cryptodev-linux loaded
  2. Device Interaction: Attacker opens the /dev/crypto device and initiates cryptographic operations with carefully crafted user buffers
  3. Reference Count Manipulation: Through repeated operations, the attacker causes page reference counts to decrement below their expected values
  4. Use-After-Free Trigger: When reference counts reach zero, the kernel frees pages that are still mapped in the attacker's address space
  5. Memory Corruption: The attacker can now manipulate the contents of freed pages to achieve arbitrary kernel memory access
  6. Privilege Escalation: The attacker modifies kernel structures to elevate privileges to root

Technical details and proof-of-concept information can be found in the security researcher's post and the associated GitHub Gist.

Detection Methods for CVE-2026-28529

Indicators of Compromise

  • Unusual activity involving the /dev/crypto device, particularly rapid or repeated cryptographic operations from non-standard processes
  • Kernel log entries indicating memory corruption, double-free conditions, or page reference count anomalies
  • Unexpected privilege escalation events where user processes gain root access
  • Processes accessing /dev/crypto that don't typically perform cryptographic operations

Detection Strategies

  • Monitor system calls to the /dev/crypto device interface using kernel auditing (auditd) or eBPF-based monitoring
  • Implement anomaly detection for processes accessing hardware cryptographic interfaces without legitimate business needs
  • Deploy kernel integrity monitoring to detect unauthorized modifications to privilege-related structures
  • Use SentinelOne's behavioral AI engine to identify suspicious privilege escalation patterns following cryptographic device access

Monitoring Recommendations

  • Enable kernel audit logging for all /dev/crypto device access with rules targeting open, ioctl, and mmap syscalls
  • Implement real-time alerting for any privilege escalation events on systems where cryptodev-linux is deployed
  • Monitor for kernel oops or panic events that may indicate failed exploitation attempts
  • Review process lineage for any root-level processes that originated from user sessions interacting with /dev/crypto

How to Mitigate CVE-2026-28529

Immediate Actions Required

  • Review the fix implemented in the official pull request and apply the patch to affected systems
  • Restrict access to the /dev/crypto device by modifying device permissions or using device control policies
  • Consider temporarily unloading the cryptodev-linux module (rmmod cryptodev) on systems where it's not actively required
  • Audit systems to identify which services and applications depend on /dev/crypto functionality

Patch Information

A fix for this vulnerability has been developed and is available through the cryptodev-linux GitHub repository pull request #104. Organizations running affected versions should review this patch and apply it to their kernel module builds. For systems using distribution-provided packages, monitor your distribution's security advisories for updated cryptodev-linux packages.

Additional technical analysis is available from the VulnCheck advisory.

Workarounds

  • Remove or restrict access to /dev/crypto by changing device permissions: chmod 600 /dev/crypto and ensuring only root can access it
  • Blacklist the cryptodev module to prevent automatic loading by adding blacklist cryptodev to /etc/modprobe.d/blacklist.conf
  • Implement SELinux or AppArmor policies to restrict which processes can interact with the /dev/crypto device
  • Use container isolation to limit exposure of the cryptographic device to only trusted workloads that require it
bash
# Restrict /dev/crypto access to root only
chmod 600 /dev/crypto
chown root:root /dev/crypto

# Prevent automatic module loading (add to /etc/modprobe.d/blacklist-cryptodev.conf)
echo "blacklist cryptodev" >> /etc/modprobe.d/blacklist-cryptodev.conf

# Unload the module if not needed
rmmod cryptodev

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

  • Vulnerability Details
  • TypePrivilege Escalation

  • Vendor/TechCryptodev Linux

  • SeverityHIGH

  • CVSS Score8.5

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:L/AC:L/AT:N/PR:L/UI:N/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-416
  • Technical References
  • GitHub Gist PoC

  • GitHub Pull Request

  • NASM Security Post

  • VulnCheck Advisory
  • Latest CVEs
  • CVE-2025-70797: LimeSurvey XSS Vulnerability

  • CVE-2025-30650: Juniper Junos OS Auth Bypass Vulnerability

  • CVE-2026-35471: Goshs Path Traversal Vulnerability

  • CVE-2026-35393: Goshs Path Traversal 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