Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-33154

CVE-2026-33154: Dynaconf Python SSTI/RCE Vulnerability

CVE-2026-33154 is a server-side template injection flaw in Dynaconf that enables remote code execution through unsafe Jinja template evaluation. This article covers the technical details, affected versions, and mitigation steps.

Published: March 27, 2026

CVE-2026-33154 Overview

dynaconf is a popular configuration management tool for Python applications. Prior to version 3.2.13, Dynaconf is vulnerable to Server-Side Template Injection (SSTI) due to unsafe template evaluation in the @Jinja resolver. When the jinja2 package is installed, Dynaconf evaluates template expressions embedded in configuration values without a sandboxed environment, allowing attackers to execute arbitrary code on the server.

Critical Impact

Attackers can achieve remote code execution by injecting malicious Jinja2 template expressions into configuration values, potentially leading to complete system compromise.

Affected Products

  • dynaconf versions prior to 3.2.13
  • Python applications using dynaconf with jinja2 package installed
  • Systems where configuration values can be influenced by untrusted input

Discovery Timeline

  • 2026-03-20 - CVE CVE-2026-33154 published to NVD
  • 2026-03-23 - Last updated in NVD database

Technical Details for CVE-2026-33154

Vulnerability Analysis

This vulnerability is classified under CWE-94 (Improper Control of Generation of Code), which encompasses code injection vulnerabilities. The flaw exists in dynaconf's @Jinja resolver functionality, which is designed to allow dynamic configuration value generation using Jinja2 templating.

The core issue stems from the absence of a sandboxed execution environment when processing Jinja2 templates. When an application loads configuration values that contain Jinja2 template syntax (prefixed with @jinja), dynaconf passes these expressions directly to the Jinja2 rendering engine without proper restrictions. This allows an attacker who can control or influence configuration values to inject arbitrary Python code through Jinja2's template expression syntax.

The attack requires the jinja2 package to be installed in the Python environment, which is a common dependency in many Python web frameworks. The network-accessible attack vector with high complexity suggests that exploitation requires specific conditions to be met, such as the attacker having the ability to modify configuration sources or inject values through application interfaces.

Root Cause

The root cause of this vulnerability is the lack of a sandboxed Jinja2 environment in dynaconf's template resolver. When processing configuration values prefixed with @jinja, the library renders templates using an unrestricted Jinja2 environment that provides access to Python's built-in functions and object model. This design allows template expressions to escape the intended configuration context and execute arbitrary Python code.

Attack Vector

The attack vector is network-based, requiring the attacker to have low-level privileges and the ability to influence configuration values processed by dynaconf. Exploitation scenarios include:

  1. Configuration file injection - If an attacker can modify configuration files (YAML, TOML, JSON, etc.) that dynaconf loads, they can embed malicious Jinja2 expressions
  2. Environment variable manipulation - Configuration values sourced from environment variables could be exploited if an attacker controls the environment
  3. External configuration sources - Applications loading configuration from external sources (Redis, Vault, etc.) may be vulnerable if those sources are compromised

A typical SSTI payload leverages Jinja2's object traversal capabilities to access Python's subprocess module or similar dangerous functions, enabling command execution on the underlying system.

For detailed technical information about exploitation methods, see the GitHub Security Advisory GHSA-pxrr-hq57-q35p.

Detection Methods for CVE-2026-33154

Indicators of Compromise

  • Unusual Jinja2 template expressions in configuration files containing Python object references (e.g., __class__, __mro__, __subclasses__)
  • Configuration values containing suspicious patterns like {{ config.__class__.__init__.__globals__ }} or similar object traversal attempts
  • Unexpected subprocess executions or network connections originating from the Python application process
  • Log entries showing template rendering errors with unusual payloads

Detection Strategies

  • Implement file integrity monitoring on configuration files to detect unauthorized modifications
  • Deploy application-level logging to capture configuration value parsing and template rendering operations
  • Use network monitoring to identify unexpected outbound connections from application servers
  • Configure endpoint detection to alert on suspicious Python subprocess spawning patterns

Monitoring Recommendations

  • Audit all sources of configuration data that flow into dynaconf-powered applications
  • Monitor for changes to environment variables used in application configuration
  • Implement alerting for configuration reloads or dynamic configuration updates from external sources
  • Review application logs for Jinja2 template errors or unusual rendering behavior

How to Mitigate CVE-2026-33154

Immediate Actions Required

  • Upgrade dynaconf to version 3.2.13 or later immediately
  • Audit all configuration sources for potentially malicious Jinja2 expressions
  • Review application code to identify where dynaconf's @jinja resolver is used
  • Restrict access to configuration files and external configuration sources
  • Consider disabling Jinja2 template evaluation if not required for your use case

Patch Information

The vulnerability has been patched in dynaconf version 3.2.13. The fix implements proper sandboxing for Jinja2 template evaluation, restricting access to dangerous Python functionality.

Patch details are available in the GitHub Commit Update. Users should upgrade via pip:

bash
pip install --upgrade dynaconf>=3.2.13

The official release is available at the GitHub Release 3.2.13 page.

Workarounds

  • Remove the jinja2 package from your Python environment if Jinja2 templating in configuration is not required
  • Implement strict input validation on all configuration sources to reject template-like patterns
  • Use application-level access controls to prevent unauthorized modification of configuration files
  • Consider migrating sensitive configuration values to secure secret management systems with proper access controls
bash
# Check if jinja2 is installed and remove if not needed
pip list | grep -i jinja2
# If jinja2 is not required, uninstall it
pip uninstall jinja2

# Verify dynaconf version after upgrade
pip show dynaconf | grep Version
# Expected output: Version: 3.2.13 or higher

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechDynaconf

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.05%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-94
  • Technical References
  • GitHub Commit Update

  • GitHub Release 3.2.13

  • GitHub Security Advisory GHSA-pxrr-hq57-q35p
  • Latest CVEs
  • CVE-2025-49454: TinySalt Path Traversal Vulnerability

  • CVE-2025-48261: MultiVendorX Information Disclosure Flaw

  • CVE-2025-32119: CardGate WooCommerce SQL Injection Flaw

  • CVE-2025-26879: s2Member Plugin Reflected XSS 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