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-2023-0459

CVE-2023-0459: Linux Kernel Information Disclosure Flaw

CVE-2023-0459 is an information disclosure vulnerability in the Linux Kernel affecting 64-bit systems. Attackers can bypass access_ok checks to leak sensitive kernel information. This article covers technical details, impact, and patches.

Published: January 28, 2026

CVE-2023-0459 Overview

CVE-2023-0459 is an information disclosure vulnerability affecting 64-bit versions of the Linux kernel. The copy_from_user() function fails to implement the __uaccess_begin_nospec speculation barrier, allowing a local attacker to bypass the access_ok check and pass a kernel pointer to copy_from_user(). This vulnerability enables unauthorized disclosure of sensitive kernel memory contents to user-space processes.

Critical Impact

Local attackers can leak sensitive kernel memory information by exploiting the missing speculation barrier in the copy_from_user() function on 64-bit Linux systems, potentially exposing cryptographic keys, credentials, or other sensitive data stored in kernel memory.

Affected Products

  • Linux Kernel (64-bit versions)
  • Linux Kernel versions prior to commit 74e19ef0ff8061ef55957c3abd71614ef0f42f47
  • Systems running vulnerable x86_64 Linux kernel builds

Discovery Timeline

  • May 25, 2023 - CVE-2023-0459 published to NVD
  • November 21, 2024 - Last updated in NVD database

Technical Details for CVE-2023-0459

Vulnerability Analysis

This vulnerability stems from an incomplete implementation of Spectre variant 1 mitigations in the Linux kernel's user access copy functions. The copy_from_user() function on 64-bit architectures did not properly invoke __uaccess_begin_nospec, which is essential for inserting a speculation barrier before accessing user-space memory pointers.

Without this speculation barrier, an attacker can craft a scenario where the CPU speculatively executes memory accesses using a kernel pointer that would normally be rejected by the access_ok check. This speculative execution can leave observable side effects in the CPU cache, enabling Spectre-style attacks to extract kernel memory contents.

The vulnerability is particularly significant because copy_from_user() is a fundamental kernel primitive used extensively throughout the kernel codebase for copying data from user-space to kernel-space. The high confidentiality impact reflects the potential for attackers to read arbitrary kernel memory locations.

Root Cause

The root cause is the missing barrier_nospec() speculation barrier in the copy_from_user() code path on 64-bit Linux systems. The __uaccess_begin_nospec macro, which should insert this barrier to prevent speculative execution based on untrusted user pointers, was not consistently applied. This allowed the CPU to speculatively execute memory operations before the access_ok bounds check was architecturally resolved, creating a timing side channel for information disclosure.

Attack Vector

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

  1. Crafting a malicious user-space application that invokes system calls utilizing copy_from_user()
  2. Manipulating the pointer passed to copy_from_user() to point to kernel memory addresses
  3. Using cache-timing side channels to observe the speculative memory accesses
  4. Extracting sensitive kernel memory contents through the observed cache behavior

The local attack vector and low privilege requirement mean this vulnerability could be exploited by any authenticated user on a vulnerable system.

c
// Security patch in lib/usercopy.c - Adding speculation barrier
// Source: https://github.com/torvalds/linux/commit/74e19ef0ff8061ef55957c3abd71614ef0f42f47

#include <linux/fault-inject-usercopy.h>
#include <linux/instrumented.h>
#include <linux/uaccess.h>
+#include <linux/nospec.h>
 
/* out-of-line parts */

Source: GitHub Linux Commit Fix

c
// Security patch in kernel/bpf/core.c - Removing architecture-specific barrier
// Source: https://github.com/torvalds/linux/commit/74e19ef0ff8061ef55957c3abd71614ef0f42f47

		 * reuse preexisting logic from Spectre v1 mitigation that
		 * happens to produce the required code on x86 for v4 as well.
		 */
-#ifdef CONFIG_X86
		barrier_nospec();
-#endif
		CONT;
#define LDST(SIZEOP, SIZE)						\
	STX_MEM_##SIZEOP:						\

Source: GitHub Linux Commit Fix

Detection Methods for CVE-2023-0459

Indicators of Compromise

  • Unusual kernel memory access patterns from user-space processes
  • Suspicious system calls with malformed user pointers attempting to read kernel addresses
  • Abnormal cache timing behavior indicative of side-channel exploitation attempts
  • Processes repeatedly invoking copy functions with addresses outside user-space ranges

Detection Strategies

  • Monitor system logs for kernel warnings about invalid user pointer access attempts
  • Deploy kernel integrity monitoring tools to detect anomalous memory access patterns
  • Implement audit rules for system calls that heavily utilize copy_from_user()
  • Use hardware performance counters to detect cache-timing attack signatures

Monitoring Recommendations

  • Enable kernel auditing subsystem to log suspicious user-to-kernel copy operations
  • Monitor for processes exhibiting high rates of failed memory access operations
  • Deploy endpoint detection solutions capable of identifying Spectre-variant exploitation techniques
  • Review system call audit logs for patterns consistent with memory probing activities

How to Mitigate CVE-2023-0459

Immediate Actions Required

  • Update the Linux kernel to a version containing commit 74e19ef0ff8061ef55957c3abd71614ef0f42f47 or later
  • Prioritize patching 64-bit Linux systems, particularly those with multi-user access
  • Apply vendor-specific kernel security updates from your Linux distribution
  • Consider restricting local access to sensitive systems until patching is complete

Patch Information

The vulnerability is addressed in the Linux kernel commits 74e19ef0ff8061ef55957c3abd71614ef0f42f47 and 4b842e4e25b12951fa10dedb4bc16bc47e3b850c. These commits add the necessary barrier_nospec() speculation barrier to copy_from_user() and remove the small constant size optimizations in raw_copy_{to,from}_user() that bypassed the speculation barrier. Organizations should update to kernel versions that include these fixes or apply backported patches from their distribution vendor.

Workarounds

  • Limit local system access to only trusted users until the kernel can be patched
  • Enable additional Spectre mitigations at the kernel level where available
  • Deploy mandatory access controls (SELinux, AppArmor) to restrict untrusted process capabilities
  • Consider disabling unprivileged BPF if applicable to reduce attack surface
bash
# Check current kernel version
uname -r

# Verify if the fix is present (look for barrier_nospec in usercopy)
grep -r "barrier_nospec" /usr/src/linux/lib/usercopy.c 2>/dev/null || echo "Source not available, check kernel version"

# Update kernel using your distribution's package manager
# For Debian/Ubuntu:
sudo apt update && sudo apt upgrade linux-image-generic

# For RHEL/CentOS/Fedora:
sudo dnf update kernel

# Reboot to apply the new kernel
sudo reboot

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechLinux Kernel

  • SeverityMEDIUM

  • CVSS Score5.5

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-763
  • Vendor Resources
  • GitHub Linux Commit Update

  • GitHub Linux Commit Fix
  • Related CVEs
  • CVE-2026-23303: Linux Kernel Information Disclosure Flaw

  • CVE-2026-23370: Linux Kernel Information Disclosure Flaw

  • CVE-2026-23384: Linux Kernel Information Disclosure Flaw

  • CVE-2026-23335: Linux Kernel Information Disclosure Bug
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