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

CVE-2026-33310: Intake Package RCE Vulnerability

CVE-2026-33310 is a remote code execution flaw in Intake package that allows malicious catalog YAML files to execute commands on the host system. This article covers technical details, affected versions, and mitigation.

Published: March 27, 2026

CVE-2026-33310 Overview

CVE-2026-33310 is a command injection vulnerability affecting Intake, a Python package designed for finding, investigating, loading, and disseminating data. The vulnerability exists in the catalog parsing process where the shell() syntax within parameter default values is automatically expanded during catalog parsing. When a catalog contains a parameter default such as shell(<command>), the command may be executed when the catalog source is accessed. This means that if a user loads a malicious catalog YAML file, embedded commands could execute on the host system without explicit user consent.

Critical Impact

Attackers can achieve remote code execution by crafting malicious Intake catalog YAML files that execute arbitrary shell commands when loaded by unsuspecting users.

Affected Products

  • Intake versions prior to 2.0.9
  • Any application using vulnerable Intake library to parse untrusted catalog files
  • Systems where users may load external or untrusted YAML catalog sources

Discovery Timeline

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

Technical Details for CVE-2026-33310

Vulnerability Analysis

This vulnerability stems from unsafe default behavior in the Intake library's catalog processing mechanism. The getshell parameter, which controls whether shell command expansion is allowed during catalog parsing, was set to True by default. This design choice enables the automatic execution of any commands embedded within shell() syntax in catalog YAML files.

The vulnerability is classified as CWE-78 (Improper Neutralization of Special Elements used in an OS Command), commonly known as OS Command Injection. When a user loads a YAML catalog file from an untrusted source, any shell() directives within parameter defaults are executed immediately during the parsing phase, before the user has any opportunity to inspect or validate the content.

Root Cause

The root cause is the insecure default configuration where the getshell parameter was initialized to True in multiple components of the Intake library. This default setting allowed shell command expansion during catalog parsing without requiring explicit user opt-in. The affected code paths include the catalog base module and entry module, where the constructor methods accepted getshell=True as the default parameter value.

Attack Vector

An attacker can exploit this vulnerability by distributing a malicious Intake catalog YAML file containing embedded shell commands. The attack requires user interaction—specifically, the victim must load the malicious catalog file. The attack vector is network-based, as malicious catalogs can be distributed via URLs, shared repositories, or any data sharing mechanism. Once a victim's Intake instance parses the malicious catalog, the embedded shell commands execute with the privileges of the user running the application.

The security patch disables shell expansion by default:

python
         metadata=None,
         ttl=60,
         getenv=True,
-        getshell=True,
+        getshell=False,
         persist_mode="default",
         storage_options=None,
         user_parameters=None,

Source: GitHub Commit d0c0b6b

The fix was also applied to the entry module:

python
     and by remote entries (read from a server).
     """
 
-    def __init__(self, getenv=True, getshell=True):
+    def __init__(self, getenv=True, getshell=False):
         self._default_source = None
         self.getenv = getenv
         self.getshell = getshell

Source: GitHub Commit d0c0b6b

Detection Methods for CVE-2026-33310

Indicators of Compromise

  • Unexpected process spawning from Python applications using Intake
  • Suspicious YAML catalog files containing shell() directives in parameter defaults
  • Network connections or file system modifications initiated during catalog loading operations
  • Command execution events correlated with Intake catalog parsing activity

Detection Strategies

  • Monitor for suspicious child process creation from Python processes that use the Intake library
  • Implement file integrity monitoring on catalog YAML files to detect malicious modifications
  • Scan catalog files for shell() syntax patterns before loading
  • Deploy endpoint detection rules to identify command injection patterns in YAML files

Monitoring Recommendations

  • Enable logging for all catalog file loads in Intake-based applications
  • Configure alerts for unusual shell command execution patterns from data processing applications
  • Review and audit third-party catalog sources before integration into production systems
  • Implement application-level logging to track which catalog files are loaded and from which sources

How to Mitigate CVE-2026-33310

Immediate Actions Required

  • Upgrade Intake to version 2.0.9 or later immediately
  • Audit all existing catalog YAML files for potentially malicious shell() directives
  • Restrict loading of catalog files from untrusted or external sources
  • Review application code to ensure getshell is explicitly set to False if upgrade is delayed

Patch Information

The vulnerability has been addressed in Intake version 2.0.9, which sets getshell to False by default everywhere. The patch modifies the default behavior in intake/catalog/base.py and intake/catalog/entry.py to disable automatic shell expansion. For detailed patch information, refer to the GitHub Security Advisory GHSA-37g4-qqqv-7m99 and the security patch commit.

Workarounds

  • Explicitly set getshell=False when instantiating Intake catalogs if immediate upgrade is not possible
  • Implement input validation to scan and reject catalog files containing shell() syntax
  • Isolate Intake catalog processing in sandboxed environments with limited system access
  • Use network segmentation to prevent catalog loading from untrusted external sources
bash
# Upgrade Intake to patched version
pip install --upgrade intake>=2.0.9

# Verify installed version
pip show intake | grep Version

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechIntake

  • SeverityHIGH

  • CVSS Score8.8

  • EPSS Probability0.05%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityHigh
  • AvailabilityHigh
  • CWE References
  • CWE-78
  • Vendor Resources
  • GitHub Commit Update

  • GitHub Security Advisory GHSA-37g4-qqqv-7m99
  • Latest CVEs
  • CVE-2025-9185: Mozilla Firefox RCE Vulnerability

  • CVE-2025-9184: Mozilla Firefox RCE Vulnerability

  • CVE-2025-9180: Mozilla Firefox Auth Bypass Vulnerability

  • CVE-2025-8030: Mozilla Firefox RCE 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