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
    • 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-28505

CVE-2026-28505: Tautulli RCE Vulnerability

CVE-2026-28505 is a remote code execution flaw in Tautulli that exploits a sandbox bypass in notification templates. This post explains the technical details, affected versions, impact, and mitigation steps.

Published: April 2, 2026

CVE-2026-28505 Overview

CVE-2026-28505 is a Code Injection vulnerability affecting Tautulli, a Python-based monitoring and tracking tool for Plex Media Server. The vulnerability exists in the str_eval() function within notification_handler.py, which implements a sandboxed eval() for notification text templates. Due to a flaw in how the sandbox inspects code objects, attackers with high privileges can bypass sandbox restrictions using lambda expressions to execute arbitrary code.

Critical Impact

Authenticated attackers with administrative privileges can bypass the notification template sandbox and achieve remote code execution on the Tautulli server, potentially compromising the underlying system and connected Plex Media Server infrastructure.

Affected Products

  • Tautulli versions prior to 2.17.0
  • Tautulli notification template processing functionality
  • Systems running Tautulli with notification features enabled

Discovery Timeline

  • 2026-03-30 - CVE-2026-28505 published to NVD
  • 2026-04-02 - Last updated in NVD database

Technical Details for CVE-2026-28505

Vulnerability Analysis

This vulnerability is classified as CWE-94 (Improper Control of Generation of Code - Code Injection). The flaw resides in Tautulli's notification template processing system, specifically within the str_eval() function in notification_handler.py. This function is designed to provide a sandboxed environment for evaluating user-provided notification templates safely.

The sandbox implementation attempts to restrict callable names by inspecting the code.co_names attribute of compiled code objects. This approach was intended to prevent users from accessing dangerous built-in functions or modules that could be used for malicious purposes. However, the implementation contains a critical oversight in how Python code objects are structured.

Root Cause

The root cause of this vulnerability lies in the incomplete inspection of nested code objects. When Python code is compiled, the co_names attribute only contains names from the outer code object. Lambda expressions, anonymous functions defined inline, create nested code objects whose attribute accesses are stored in code.co_consts rather than code.co_names.

The sandbox implementation fails to recursively inspect nested code objects. This means that while the outer template may appear safe when its co_names are examined, a lambda expression embedded within it can contain arbitrary attribute accesses and function calls that completely bypass the sandbox's security checks.

Attack Vector

The attack vector is network-based, requiring an authenticated attacker with high privileges (typically administrator access to the Tautulli web interface). An attacker can craft a malicious notification template containing a lambda expression that, when evaluated by the str_eval() function, escapes the sandbox restrictions.

By embedding dangerous code within a lambda expression, the attacker can access Python's built-in functions, import modules, and ultimately execute arbitrary system commands on the server hosting Tautulli. This could lead to complete system compromise, data exfiltration, or lateral movement within the network.

The vulnerability is exploited through the notification template system, where user-controlled input is processed by the vulnerable str_eval() function. The attacker leverages the fact that nested code objects (created by lambda expressions) are not subject to the same security checks as the parent code object.

Detection Methods for CVE-2026-28505

Indicators of Compromise

  • Unusual notification templates containing lambda expressions or nested function definitions
  • Unexpected system processes spawned by the Tautulli application
  • Modifications to notification templates by unauthorized or suspicious accounts
  • Anomalous network connections originating from the Tautulli server

Detection Strategies

  • Monitor Tautulli configuration files for suspicious notification template modifications
  • Implement file integrity monitoring on notification_handler.py and related configuration files
  • Review Tautulli access logs for administrative actions related to notification template changes
  • Deploy application-level logging to capture str_eval() function calls and their parameters

Monitoring Recommendations

  • Enable verbose logging in Tautulli to capture all template evaluation activities
  • Configure SIEM alerts for process execution anomalies from the Tautulli application directory
  • Monitor for unusual Python subprocess activity on systems running Tautulli
  • Implement network segmentation to limit the blast radius of potential exploitation

How to Mitigate CVE-2026-28505

Immediate Actions Required

  • Upgrade Tautulli to version 2.17.0 or later immediately
  • Audit all existing notification templates for suspicious lambda expressions or nested functions
  • Review administrative access logs to identify any potentially malicious template modifications
  • Consider temporarily disabling custom notification templates until the patch is applied

Patch Information

The Tautulli development team has addressed this vulnerability in version 2.17.0. The patch fixes the sandbox bypass by properly inspecting nested code objects, including those created by lambda expressions. Users should upgrade to this version or later to remediate the vulnerability.

For detailed patch information, refer to the Tautulli Release v2.17.0 and the GitHub Security Advisory GHSA-m62j-gwm9-7p8m.

Workarounds

  • Restrict administrative access to Tautulli to only trusted users until the patch can be applied
  • Disable or remove custom notification templates that are not essential
  • Implement network-level controls to limit access to the Tautulli web interface
  • Consider running Tautulli in a containerized or isolated environment to limit potential impact
bash
# Upgrade Tautulli to patched version
cd /path/to/tautulli
git fetch --all
git checkout v2.17.0
pip install -r requirements.txt
# Restart Tautulli service
systemctl restart tautulli

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechTautulli

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:H/AT:N/PR:H/UI:N/VC:H/VI:H/VA:H/SC:N/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
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-94
  • Technical References
  • Tautulli Release v2.17.0
  • Vendor Resources
  • GitHub Security Advisory GHSA-m62j-gwm9-7p8m
  • Related CVEs
  • CVE-2026-31799: Tautulli SQL Injection Vulnerability

  • CVE-2026-31831: Tautulli Path Traversal Vulnerability

  • CVE-2026-32275: Tautulli XSS Vulnerability

  • CVE-2026-31804: Tautulli SSRF 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