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

CVE-2026-2415: pretix Information Disclosure Vulnerability

CVE-2026-2415 is an information disclosure flaw in pretix that allows attackers to exfiltrate sensitive system data through malicious email placeholders. This post covers technical details, affected versions, and mitigation.

Published: February 20, 2026

CVE-2026-2415 Overview

CVE-2026-2415 is a high-severity information disclosure vulnerability in pretix, an open-source ticketing software. The vulnerability exists in the email template placeholder mechanism, which allows email templates to include dynamic placeholders that are filled with customer data. Due to improper input validation, attackers can craft malicious placeholder names to exfiltrate sensitive system information, including database passwords and API keys.

Critical Impact

Attackers with access to email templates can exfiltrate sensitive configuration data including database credentials and API keys through specially crafted placeholders. A secondary double-evaluation bug expands the attack surface to ticket buyers under certain conditions.

Affected Products

  • pretix (versions prior to 2026.1.1)

Discovery Timeline

  • 2026-02-16 - CVE-2026-2415 published to NVD
  • 2026-02-18 - Last updated in NVD database

Technical Details for CVE-2026-2415

Vulnerability Analysis

This vulnerability stems from two distinct but related security flaws in pretix's email template placeholder system. The first flaw involves insufficient sanitization of placeholder names, allowing attackers to inject Python object traversal patterns like {{event.__init__.__code__.co_filename}} to access internal system attributes. While pretix implements mechanisms to prevent malicious placeholders, a coding error rendered these protections ineffective for email subject lines.

The second flaw involves double evaluation of placeholders in email subjects and plain text bodies. When a placeholder's first evaluation result contains another placeholder syntax, the system incorrectly processes the nested placeholder. This creates a path for ticket buyers to exploit the first vulnerability if their controlled data (such as {invoice_company}) appears in email subject templates.

Root Cause

The root cause is classified as CWE-627 (Dynamic Variable Evaluation), where the application dynamically evaluates user-controlled input as variable names or code references without adequate restrictions. The placeholder parsing logic fails to properly sanitize input in email subjects, and the double-evaluation behavior amplifies the attack surface by allowing indirect injection of malicious placeholder patterns through buyer-controlled fields.

Attack Vector

The attack is network-accessible and requires low privileges—typically any authenticated backend user with email template editing permissions. For the secondary attack path, a ticket buyer could potentially exploit this by including placeholder syntax in invoice company names, though this requires the specific field to be included in email subject templates, which is uncommon in typical deployments.

An attacker would craft a malicious placeholder such as {{event.__init__.__code__.co_filename}} in an email template subject line. When the email is generated, the placeholder traverses Python object attributes to access sensitive configuration values, which are then rendered into the email content and potentially visible to the attacker or exfiltrated through the email delivery process.

Detection Methods for CVE-2026-2415

Indicators of Compromise

  • Unusual placeholder patterns in email templates containing Python dunder methods (e.g., __init__, __class__, __code__)
  • Email templates with nested or chained placeholder references
  • Audit log entries showing template modifications with object traversal syntax
  • Unexpected access patterns to email template configuration interfaces

Detection Strategies

  • Monitor email template changes for patterns matching object attribute traversal (regex patterns like \{\{.*__.*__.*\}\})
  • Implement alerting on email template modifications containing suspicious placeholder names
  • Review outbound emails for anomalous content that may indicate successful data exfiltration
  • Audit authentication logs for unusual backend user activity around template management features

Monitoring Recommendations

  • Enable comprehensive logging for all email template creation and modification events
  • Configure SIEM rules to detect placeholder patterns indicative of object injection attempts
  • Monitor for changes to the pretix.cfg configuration file that may indicate post-exploitation activity
  • Implement file integrity monitoring on pretix configuration directories

How to Mitigate CVE-2026-2415

Immediate Actions Required

  • Update pretix to version 2026.1.1 or later immediately
  • Rotate all passwords and API keys contained in your pretix.cfg configuration file
  • Audit existing email templates for any suspicious or malicious placeholder patterns
  • Review access logs for email template modification activity

Patch Information

The pretix development team has released version 2026.1.1 to address this vulnerability. The fix implements proper placeholder validation across all email template components, including subject lines, and eliminates the double-evaluation behavior. Organizations should upgrade to this version as soon as possible. For detailed release information, see the Pretix Blog Release Announcement.

Workarounds

  • Restrict email template editing permissions to only trusted administrators until patching is complete
  • Remove any buyer-controlled placeholders (such as {invoice_company}) from email subject templates
  • Implement network-level monitoring for outbound emails containing unexpected configuration data
  • Consider temporarily disabling custom email templates if immediate patching is not feasible
bash
# Post-update credential rotation steps
# 1. Generate new database password
# 2. Update pretix.cfg with new credentials
# 3. Rotate all API keys referenced in configuration
# 4. Restart pretix services to apply changes

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

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechPretix

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.05%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:H/AT:N/PR:L/UI:N/VC:H/VI:H/VA:H/SC:H/SI:H/SA:H/E:P/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:L/U:Red
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-627
  • Technical References
  • Pretix Blog Release Announcement
  • Related CVEs
  • CVE-2026-5600: Pretix Information Disclosure Vulnerability

  • CVE-2026-2452: pretix Information Disclosure Vulnerability

  • CVE-2026-2451: pretix Information Disclosure 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