A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-46039

CVE-2026-46039: Linux Kernel Integer Overflow Vulnerability

CVE-2026-46039 is an integer overflow flaw in the Linux kernel's rxgk_extract_token() function that affects ticket length validation. This article covers the technical details, affected versions, and mitigation steps.

Published: May 28, 2026

CVE-2026-46039 Overview

CVE-2026-46039 is an integer overflow vulnerability in the Linux kernel's rxgk subsystem, which implements the RxGK security class used by AFS (Andrew File System) over RxRPC. The flaw resides in the rxgk_extract_token() function during a length check on incoming ticket data. The original code rounded up the value under test before comparison, which could itself overflow and bypass the bounds check. The upstream fix inverts the logic by rounding down the size of the available data, removing the overflow path entirely.

Critical Impact

A specially crafted ticket length could bypass validation in rxgk_extract_token(), potentially leading to out-of-bounds memory access during RxGK token processing in the kernel.

Affected Products

  • Linux kernel (upstream rxgk / RxRPC subsystem)
  • Linux kernel stable branches receiving commits 183d37f, 43222ac, and 6929350
  • Distributions shipping kernels with RxGK support enabled

Discovery Timeline

  • 2026-05-27 - CVE-2026-46039 published to NVD
  • 2026-05-27 - Last updated in NVD database

Technical Details for CVE-2026-46039

Vulnerability Analysis

The vulnerability is an integer overflow [CWE-190] in the length validation logic of rxgk_extract_token(). RxGK is the GSSAPI-based security class for the Rx RPC protocol used by AFS. During token extraction, the kernel parses an attacker-influenced ticket field and validates its declared length against the buffer's available data. The original implementation rounded the declared length up to an alignment boundary before comparison. When the declared length sat near SIZE_MAX, that round-up operation wrapped to a small value, allowing oversized tickets to pass the check and be processed as if they fit in the buffer.

Root Cause

The root cause is unsafe arithmetic on attacker-controlled input prior to a bounds comparison. The function computed round_up(ticket_len, alignment) and compared the result against the available data size. Because ticket_len is derived from untrusted network input, an attacker could choose a value such that the rounded result overflowed past zero. The patched code instead applies round_down() to the trusted available-data size and compares the untouched ticket_len against it, eliminating the overflow primitive.

Attack Vector

Exploitation requires the ability to deliver a crafted RxGK token to a vulnerable kernel, which generally means reaching an AFS or RxRPC endpoint that negotiates the RxGK security class. The malicious token carries a length field engineered to trigger the overflow during validation. The immediate consequence is the kernel proceeding with token processing using an attacker-supplied length that exceeds the underlying buffer. Specific exploitability depends on downstream consumers of the validated length, but the class of bug typically enables out-of-bounds reads or related memory-safety violations in kernel context.

No public proof-of-concept code is listed in the advisory data. The technical fix can be reviewed in the upstream commits: Kernel Git Commit 183d37f, Kernel Git Commit 43222ac, and Kernel Git Commit 6929350.

Detection Methods for CVE-2026-46039

Indicators of Compromise

  • Unexpected RxRPC or AFS protocol errors in dmesg or kernel logs referencing rxgk_extract_token or token parsing failures.
  • Kernel oops, KASAN reports, or slab-out-of-bounds traces tied to the rxgk code path.
  • Anomalous inbound traffic to UDP port 7001 (afs3-callback) or other AFS service ports from untrusted networks.

Detection Strategies

  • Inventory running kernel versions against the patched commits (183d37f, 43222ac, 6929350) to identify unpatched hosts.
  • Monitor for AFS/RxRPC traffic on systems that should not be running AFS clients or servers, which can indicate reconnaissance or exploitation attempts.
  • Correlate kernel crash telemetry with network sessions targeting RxGK-enabled endpoints.

Monitoring Recommendations

  • Ingest kernel logs and crash dumps centrally and alert on faults originating in net/rxrpc/ or rxgk symbols.
  • Track per-host RxRPC error counters exposed via /proc/net/rxrpc for sudden increases.
  • Apply network segmentation monitoring to detect unexpected exposure of AFS services beyond trusted subnets.

How to Mitigate CVE-2026-46039

Immediate Actions Required

  • Update to a Linux kernel build that includes commits 183d37f12d1c, 43222ac484f9, and 6929350080f4.
  • On systems that do not require AFS or RxRPC, unload or blacklist the rxrpc and kafs kernel modules.
  • Restrict inbound network access to AFS/RxRPC ports to known clients and servers only.

Patch Information

The issue is resolved upstream by replacing the round-up-then-compare pattern with a round-down of the available data size in rxgk_extract_token(). The fix is published in the following stable kernel commits: Kernel Git Commit 183d37f, Kernel Git Commit 43222ac, and Kernel Git Commit 6929350. Apply the distribution-provided kernel update that incorporates these commits and reboot to activate the patched kernel.

Workarounds

  • Disable AFS/RxRPC functionality on hosts that do not require it by preventing the rxrpc and kafs modules from loading.
  • Use host-based or network firewalls to drop RxRPC traffic from untrusted sources until the kernel can be patched.
  • Limit kernel module loading with modules_disabled or signed-module enforcement to reduce attack surface on production hosts.
bash
# Prevent rxrpc/kafs from loading until a patched kernel is deployed
echo 'install rxrpc /bin/true' | sudo tee /etc/modprobe.d/disable-rxrpc.conf
echo 'install kafs  /bin/true' | sudo tee -a /etc/modprobe.d/disable-rxrpc.conf
sudo rmmod kafs 2>/dev/null
sudo rmmod rxrpc 2>/dev/null

# Verify running kernel version after patching
uname -r

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

  • Vulnerability Details
  • TypeOther

  • Vendor/TechLinux Kernel

  • SeverityNONE

  • CVSS ScoreN/A

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

  • Kernel Git Commit 43222ac

  • Kernel Git Commit 6929350
  • Related CVEs
  • CVE-2026-46239: Linux Kernel OV5647 PM Refcount Leak

  • CVE-2026-46235: Linux Kernel saa7164 Memory Vulnerability

  • CVE-2026-46230: Linux Kernel AMDGPU VCN3 OOB Vulnerability

  • CVE-2026-46224: Linux Kernel DRM/XE Memory Leak Bug
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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