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

CVE-2026-43463: Linux Kernel Privilege Escalation Bug

CVE-2026-43463 is a privilege escalation vulnerability in the Linux kernel affecting rxrpc and afs components due to improper error handling. This article covers technical details, affected versions, and mitigation strategies.

Published: May 18, 2026

CVE-2026-43463 Overview

CVE-2026-43463 is a Linux kernel vulnerability in the rxrpc and afs (Andrew File System) subsystems. The function rxrpc_kernel_lookup_peer() can return error pointers in addition to NULL, but callers only checked for NULL. This insufficient validation can lead to dereferencing an error pointer as a valid object, resulting in kernel memory corruption or a kernel oops. The fix changes rxrpc_kernel_lookup_peer() to return -ENOMEM on allocation failure and updates afs callers to use the IS_ERR() and PTR_ERR() macros to propagate the error code correctly.

Critical Impact

Improper error pointer handling in the Linux kernel's rxrpc and afs subsystems can lead to kernel instability or a denial-of-service condition through invalid pointer dereference.

Affected Products

  • Linux kernel (rxrpc subsystem)
  • Linux kernel (afs filesystem client)
  • Stable kernel branches receiving the referenced commit backports

Discovery Timeline

  • 2026-05-08 - CVE-2026-43463 published to NVD
  • 2026-05-12 - Last updated in NVD database

Technical Details for CVE-2026-43463

Vulnerability Analysis

The defect resides in the interaction between the kernel's rxrpc networking layer and the afs filesystem client. The helper rxrpc_kernel_lookup_peer() resolves a peer endpoint for an RxRPC connection. Prior to the fix, callers in afs validated only that the returned pointer was non-NULL before treating it as a usable peer object.

However, the function could also return an ERR_PTR() encoded error value when underlying operations failed. Encoded error pointers occupy the upper region of the kernel address space and are not valid object pointers. Dereferencing such a value causes invalid memory access in kernel context.

This class of bug falls under improper input validation of return values, closely related to null pointer dereference [CWE-476] handling errors. The CVE record does not assign a CWE identifier.

Root Cause

The root cause is incomplete return-value validation. rxrpc_kernel_lookup_peer() had a tri-state return contract — a valid pointer, NULL, or an ERR_PTR() — but documentation and callers treated it as a two-state contract. Allocation failures inside the lookup path produced encoded error pointers that bypassed the NULL check.

Attack Vector

Triggering the defect requires conditions that cause rxrpc_kernel_lookup_peer() to return an error pointer, such as memory allocation failure during peer lookup. A local user generating sustained AFS client activity under memory pressure could reach the vulnerable code path. The defect is not known to be remotely exploitable for code execution and there is no public proof of concept.

No verified exploit code is available for this vulnerability. Refer to the upstream commits for the precise code change. Relevant references include the Kernel Git Commit Fix, the Kernel Git Commit Update, and the Kernel Git Commit Change.

Detection Methods for CVE-2026-43463

Indicators of Compromise

  • Kernel oops or BUG: messages referencing rxrpc_kernel_lookup_peer or afs call paths in dmesg.
  • Unexplained kernel panics on hosts that mount AFS volumes or use RxRPC services.
  • Repeated -ENOMEM propagation errors in AFS client logs that previously crashed older kernels.

Detection Strategies

  • Inventory running kernel versions across Linux fleets and identify hosts on branches predating the referenced upstream fix commits.
  • Audit systems that load the kafs or rxrpc modules, since unaffected systems do not exercise the vulnerable code paths.
  • Correlate kernel crash telemetry with AFS workload spikes or memory pressure events.

Monitoring Recommendations

  • Forward dmesg, kdump, and journald kernel logs to a centralized log platform for crash-signature alerting.
  • Track memory pressure metrics on hosts running AFS clients to identify conditions that increase exposure.
  • Alert on repeated module loads of rxrpc or kafs on systems where AFS is not expected.

How to Mitigate CVE-2026-43463

Immediate Actions Required

  • Apply the upstream stable kernel update containing commits 54331c5dcc6d, 4245a79003ad, and d55fa7cd4b19 from your Linux distribution.
  • Reboot affected hosts after kernel package installation to load the patched image.
  • Restrict AFS mounts to systems that explicitly require them to reduce the exposed code surface.

Patch Information

The fix is upstream in the Linux kernel via three commits: changing rxrpc_kernel_lookup_peer() to return -ENOMEM instead of NULL on allocation failure, and converting afs callers to use IS_ERR() and PTR_ERR(). Consult your distribution's security tracker for the specific package versions that backport these commits. References: Kernel Git Commit Fix, Kernel Git Commit Update, Kernel Git Commit Change.

Workarounds

  • Unload the kafs and rxrpc kernel modules on systems that do not require AFS connectivity using modprobe -r kafs rxrpc.
  • Blocklist the affected modules in /etc/modprobe.d/ to prevent automatic loading until kernels are patched.
  • Limit local user access on hosts that must continue running unpatched kernels with AFS enabled.
bash
# Blocklist rxrpc and kafs modules until a patched kernel is deployed
echo 'blacklist kafs'  | sudo tee /etc/modprobe.d/cve-2026-43463.conf
echo 'blacklist rxrpc' | sudo tee -a /etc/modprobe.d/cve-2026-43463.conf
sudo modprobe -r kafs rxrpc 2>/dev/null || true
sudo update-initramfs -u

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

  • SeverityNONE

  • CVSS ScoreN/A

  • EPSS Probability0.02%

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

  • Kernel Git Commit Fix

  • Kernel Git Commit Change
  • Related CVEs
  • CVE-2026-43347: Linux Kernel Privilege Escalation Flaw

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

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

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