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

CVE-2026-33587: Open Notebook SSTI RCE Vulnerability

CVE-2026-33587 is a server-side template injection vulnerability in Open Notebook v1.8.3 that enables remote code execution. Attackers can execute Python code and OS commands through unsanitized user input in transformations.

Published: May 7, 2026

CVE-2026-33587 Overview

CVE-2026-33587 is a Server-Side Template Injection (SSTI) vulnerability affecting Open Notebook version 1.8.3. The flaw stems from missing user input sanitisation in the user-created transformations feature. Authenticated application users can inject Python code through template expressions, achieving arbitrary code execution inside the Docker container hosting the application. Successful exploitation leads to operating system command execution within the container context. The vulnerability is tracked under CWE-20: Improper Input Validation.

Critical Impact

Authenticated users can execute arbitrary Python and OS commands inside the Open Notebook Docker container through SSTI in user-defined transformations.

Affected Products

  • Open Notebook v1.8.3
  • Open Notebook deployments using user-created transformations
  • Docker container deployments of Open Notebook

Discovery Timeline

  • 2026-05-07 - CVE-2026-33587 published to NVD
  • 2026-05-07 - Last updated in NVD database

Technical Details for CVE-2026-33587

Vulnerability Analysis

Open Notebook allows users to define custom transformations that process notebook content. The application renders these transformations through a templating engine without sanitising user-supplied template expressions. Attackers craft transformation payloads containing Python expressions that the engine evaluates server-side. The evaluation runs inside the Docker container hosting the application, granting access to the Python runtime and underlying operating system.

The attack requires application-level access but no elevated privileges. Once an authenticated user submits a malicious transformation, the template engine executes the embedded code during rendering. This bypasses any boundary the templating system was intended to enforce between user data and code execution.

The impact extends beyond the Python interpreter. Through standard Python modules, attackers spawn child processes, read environment secrets, exfiltrate notebook data, and pivot toward other services reachable from the container network. Container isolation limits but does not eliminate lateral movement risk.

Root Cause

The root cause is the absence of input sanitisation on user-created transformation templates. The application passes user-controlled strings directly to a template engine that supports arbitrary expression evaluation. No allow-list, sandbox, or expression filter restricts the available Python builtins or attribute access chains.

Attack Vector

An authenticated Open Notebook user creates or edits a transformation containing template syntax that resolves to Python code. When the application renders the transformation, the engine evaluates the payload. Common SSTI techniques traverse Python object attributes such as __class__, __bases__, and __subclasses__ to reach the os or subprocess modules and execute shell commands inside the container.

No verified public exploit code is available. Refer to the GitHub Security Advisory GHSA-f35w-wx37-26q7 for additional technical context.

Detection Methods for CVE-2026-33587

Indicators of Compromise

  • Unexpected child processes spawned by the Open Notebook application process inside the container, such as sh, bash, or python invoking system utilities.
  • Outbound network connections from the Open Notebook container to unfamiliar destinations following transformation execution.
  • Transformation records containing template syntax referencing __class__, __mro__, __subclasses__, os.popen, or subprocess.
  • Container filesystem changes in directories not normally written to by the application, including /tmp or /var/tmp.

Detection Strategies

  • Inspect stored transformation definitions for template metacharacters and Python dunder attribute traversal patterns.
  • Monitor process trees within the Open Notebook container for shell invocations descended from the Python application worker.
  • Correlate transformation creation and edit events with subsequent process or network anomalies in the container.

Monitoring Recommendations

  • Enable application-level audit logging for transformation creation, modification, and execution events.
  • Forward container runtime telemetry, including process and network events, to a centralised analytics platform for retention and review.
  • Alert on any execution of os, subprocess, or socket module calls originating from transformation rendering paths.

How to Mitigate CVE-2026-33587

Immediate Actions Required

  • Restrict access to the Open Notebook application to trusted users until a fixed version is deployed.
  • Audit existing user-created transformations for suspicious template expressions and remove any that contain code execution payloads.
  • Rotate any secrets, API keys, or credentials accessible from the Open Notebook container environment.

Patch Information

Consult the GitHub Security Advisory GHSA-f35w-wx37-26q7 for the maintainer's guidance on fixed versions and upgrade instructions. Apply the vendor-supplied update once available and validate that transformation rendering enforces input sanitisation.

Workarounds

  • Disable the user-created transformations feature where the deployment configuration permits.
  • Limit transformation creation privileges to a small set of administrative accounts.
  • Run the Open Notebook container with a read-only root filesystem, dropped Linux capabilities, and a non-root user to reduce post-exploitation impact.
  • Apply egress network policies that restrict outbound traffic from the container to required destinations only.
bash
# Configuration example: restrict container privileges
docker run \
  --read-only \
  --cap-drop=ALL \
  --security-opt=no-new-privileges \
  --user 1000:1000 \
  --network open-notebook-net \
  open-notebook:patched

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechOpen Notebook

  • SeverityCRITICAL

  • CVSS Score9.2

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:L/AC:L/AT:N/PR:N/UI:N/VC:H/VI:H/VA:H/SC:H/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-20
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-33589: Open Notebook Path Traversal Vulnerability

  • CVE-2026-33588: Open Notebook Path Traversal Vulnerability

  • CVE-2026-28201: Open Notebook Auth Bypass 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