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-35233

CVE-2026-35233: Oracle Linux DTrace DoS Vulnerability

CVE-2026-35233 is a denial of service flaw in Oracle Linux DTrace allowing unprivileged attackers to crash the dtrace process via malicious ELF binaries. This article covers technical details, impact, and mitigations.

Published: May 7, 2026

CVE-2026-35233 Overview

CVE-2026-35233 is an out-of-bounds read vulnerability [CWE-125] affecting the dtrace ELF parser on Oracle Linux. An unprivileged local attacker can craft a user-space process containing a malicious ELF binary with an out-of-range sh_link field. When a root-level dtrace instance attaches to or instruments that process through dtrace -p, pid probes, or User Statically Defined Tracing (USDT), the parser reads heap memory beyond the allocated section cache array without bounds checking. The resulting condition causes either a NULL pointer dereference crash of the privileged dtrace process or a read-then-use of an attacker-influenced garbage pointer.

Critical Impact

A low-privileged local user can crash the privileged dtrace process or potentially gain a foothold for further exploitation in a root context by manipulating adjacent heap allocations.

Affected Products

  • Oracle Linux 8
  • Oracle Linux 9
  • Oracle Linux 10

Discovery Timeline

  • 2026-05-01 - CVE-2026-35233 published to NVD
  • 2026-05-05 - Last updated in NVD database

Technical Details for CVE-2026-35233

Vulnerability Analysis

The flaw resides in the ELF parsing logic used by dtrace when it attaches to a target process for instrumentation. During section header processing, the parser uses the sh_link field from the ELF section header as an index into an internal section cache array. The implementation does not validate that sh_link falls within the allocated bounds of this array before dereferencing it.

When dtrace runs with root privileges and attaches to an attacker-controlled process via dtrace -p <pid>, pid probes, or USDT tracepoints, the parser reads adjacent heap memory. Depending on heap layout, the read returns either uninitialized data leading to a NULL pointer dereference, or a valid-looking pointer controlled by neighboring allocations that the parser then dereferences in a privileged context.

Root Cause

The root cause is missing bounds validation on the sh_link field prior to using it as an array index in the section cache lookup. The ELF specification permits sh_link to hold arbitrary 32-bit values, and the parser trusts the supplied value without comparing it against the allocated cache size. This violates standard input validation requirements for parsing untrusted file formats.

Attack Vector

Exploitation requires local access and the ability to execute a process under the attacker's control. The attacker compiles or modifies an ELF binary so that one of its section headers contains an out-of-range sh_link value, then launches the binary as a normal user process. When an administrator subsequently runs dtrace against that process, the privileged parser triggers the out-of-bounds read. The vulnerability cannot be self-triggered without the privileged dtrace invocation, which limits direct attacker control over timing.

No public proof-of-concept exploit is available, and the vulnerability is not listed in the CISA Known Exploited Vulnerabilities catalog. See the Oracle CVE-2026-35233 Advisory for vendor-specific technical detail.

Detection Methods for CVE-2026-35233

Indicators of Compromise

  • Unexpected crashes or segmentation faults of the dtrace process when attaching to user processes via -p, pid probes, or USDT.
  • Core dumps from dtrace showing faults inside ELF section header parsing routines.
  • Unprivileged users running custom or modified ELF binaries shortly before dtrace instability.

Detection Strategies

  • Monitor the kernel audit log and systemd-coredump for dtrace process terminations on Oracle Linux 8, 9, and 10 hosts.
  • Inspect ELF binaries executed by non-root users for malformed section headers, specifically sh_link values exceeding the section header count.
  • Correlate process execution telemetry with subsequent dtrace invocations targeting the same PID.

Monitoring Recommendations

  • Alert on repeated dtrace crashes across endpoints, which may indicate probing for exploitation primitives.
  • Track usage of dtrace -p against processes owned by non-administrative users.
  • Baseline normal dtrace activity to surface anomalous instrumentation patterns from operations or monitoring tooling.

How to Mitigate CVE-2026-35233

Immediate Actions Required

  • Apply the Oracle Linux security update for dtrace referenced in the Oracle CVE-2026-35233 Advisory on all affected Oracle Linux 8, 9, and 10 systems.
  • Restrict dtrace usage to trusted administrators and avoid attaching dtrace to processes owned by untrusted local users until patched.
  • Audit which users have shell access to systems where dtrace is routinely executed.

Patch Information

Oracle has published advisory information for CVE-2026-35233 covering Oracle Linux 8, 9, and 10. Administrators should install updated dtrace packages through dnf update or yum update and verify the installed version against the vendor advisory before re-enabling instrumentation workflows.

Workarounds

  • Avoid running dtrace -p, pid probes, or USDT instrumentation against processes launched by unprivileged or untrusted users until the patch is deployed.
  • Limit dtrace execution to a controlled set of administrative accounts using sudo policies.
  • Where instrumentation is required, restrict targets to binaries from trusted package sources and verify ELF integrity before attaching.

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechOracle Linux

  • SeverityMEDIUM

  • CVSS Score4.4

  • EPSS Probability0.02%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:L
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-125
  • Vendor Resources
  • Oracle CVE-2026-35233 Advisory
  • Related CVEs
  • CVE-2026-21996: Oracle Linux DOS Vulnerability

  • CVE-2022-21385: Oracle Linux Kernel DoS Vulnerability

  • CVE-2022-21505: Oracle Linux 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