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

CVE-2026-23946: Tendenci CMS RCE Vulnerability

CVE-2026-23946 is a remote code execution vulnerability in Tendenci CMS caused by unsafe pickle deserialization in the Helpdesk module. This article covers technical details, affected versions, impact, and mitigation.

Published: January 23, 2026

CVE-2026-23946 Overview

CVE-2026-23946 is an insecure deserialization vulnerability affecting Tendenci, an open source content management system designed for non-profits, associations, and cause-based sites. The vulnerability exists in the Helpdesk module's run_report() function, which improperly uses Python's unsafe pickle.loads() method to deserialize user-controlled data. This flaw allows authenticated users with staff security level to achieve Remote Code Execution (RCE) on vulnerable systems.

This vulnerability represents an incomplete patch of the earlier CVE-2020-14942. While the original fix addressed the ticket_list() function by implementing safe JSON deserialization, the run_report() function in /reports/ was overlooked and continued to use the dangerous pickle deserialization method.

Critical Impact

Authenticated staff users can execute arbitrary code on the server through unsafe pickle deserialization in the Helpdesk reports functionality, potentially leading to full system compromise within the context of the web application user.

Affected Products

  • Tendenci CMS versions 15.3.11 and below
  • Tendenci installations with the Helpdesk module enabled
  • Self-hosted Tendenci deployments running vulnerable versions

Discovery Timeline

  • January 22, 2026 - CVE-2026-23946 published to NVD
  • January 22, 2026 - Last updated in NVD database

Technical Details for CVE-2026-23946

Vulnerability Analysis

This vulnerability stems from the insecure use of Python's pickle module for deserializing data in the Helpdesk reporting functionality. Python's pickle module is inherently unsafe when processing untrusted data because it can execute arbitrary code during the deserialization process. An attacker can craft a malicious serialized object that, when unpickled, executes arbitrary Python code on the server.

The vulnerability is particularly notable because it represents a regression from an earlier security fix. When CVE-2020-14942 was addressed, developers patched the ticket_list() function to use safe JSON deserialization, but the run_report() function was missed, leaving the same class of vulnerability exposed through a different code path. The impact is limited to the permissions of the user running the application, typically www-data, which generally lacks write permissions (except for upload directories) and execute permissions.

Root Cause

The root cause is the use of pickle.loads() to deserialize base64-encoded query parameters stored in saved queries. The vulnerable code path exists in tendenci/apps/helpdesk/views/staff.py within the report generation functionality. When a saved query is loaded for report execution, the serialized query parameters are decoded and unpickled without any validation or sanitization, allowing arbitrary Python objects to be instantiated and their methods executed.

Attack Vector

The attack requires authentication with staff-level privileges in the Tendenci CMS. An attacker must create or modify a saved query containing a malicious pickled payload encoded in base64. When the run_report() function processes this query, it deserializes the payload using pickle.loads(), triggering code execution. The attack is delivered over the network through the web interface at the /helpdesk/reports/ endpoint.

The following patches demonstrate the fix that replaces unsafe pickle deserialization with JSON:

python
# Before (vulnerable):
import pickle
from base64 import b64decode
query_params = pickle.loads(b64decode(str(saved_query.query).encode()))

# After (fixed):
#import pickle
from base64 import b64decode
#query_params = pickle.loads(b64decode(str(saved_query.query).encode()))
query_params = simplejson.loads(b64decode(str(saved_query.query).encode()))

Source: Tendenci Commit Refactor

Detection Methods for CVE-2026-23946

Indicators of Compromise

  • Unusual HTTP requests to /helpdesk/reports/ endpoints with encoded payloads
  • Unexpected processes spawned by the www-data user or web server process
  • Modified or newly created saved queries in the Helpdesk module with suspicious base64-encoded content
  • Web server logs showing unusual POST requests to report-related URLs

Detection Strategies

  • Monitor web application logs for access to /helpdesk/reports/ endpoints by staff users
  • Implement file integrity monitoring on Tendenci application directories
  • Deploy web application firewall rules to detect serialized Python objects in HTTP parameters
  • Review audit logs for unexpected saved query creation or modification events

Monitoring Recommendations

  • Enable verbose logging for the Helpdesk module to capture all report generation requests
  • Set up alerts for any subprocess execution originating from the web application process
  • Monitor for outbound network connections from the web server that may indicate reverse shell attempts
  • Regularly audit staff user accounts and their associated saved queries

How to Mitigate CVE-2026-23946

Immediate Actions Required

  • Upgrade Tendenci to version 15.3.12 or later immediately
  • If upgrade is not immediately possible, disable the Helpdesk module until patching is complete
  • Audit all staff-level user accounts for unauthorized access
  • Review existing saved queries in the Helpdesk module for suspicious content

Patch Information

The vulnerability has been addressed in Tendenci version 15.3.12. The fix replaces the unsafe pickle.loads() calls with secure simplejson.loads() deserialization across multiple files including tendenci/apps/helpdesk/views/staff.py and tendenci/apps/imports/views.py. Organizations should upgrade to version 15.3.12 or later as documented in the Tendenci Release v15.3.12.

Additional details are available in the Tendenci Security Advisory GHSA-339m-4qw5-j2g3 and the GitHub Security Advisory GHSA-jqmc-fxxp-r589.

Workarounds

  • Disable the Helpdesk module by removing it from INSTALLED_APPS in your Tendenci configuration
  • Restrict staff-level access to only trusted administrators until the patch is applied
  • Implement network-level access controls to limit access to the /helpdesk/reports/ endpoint
  • Consider deploying a web application firewall to filter potentially malicious serialized payloads
bash
# Configuration example - Disable Helpdesk module in settings.py
# Remove or comment out 'tendenci.apps.helpdesk' from INSTALLED_APPS
# Then restart the application server

# Using nginx to block access to the vulnerable endpoint
location /helpdesk/reports/ {
    deny all;
    return 403;
}

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechTendenci

  • SeverityMEDIUM

  • CVSS Score6.8

  • EPSS Probability0.17%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:H/UI:R/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityHigh
  • AvailabilityHigh
  • CWE References
  • CWE-94
  • Technical References
  • Python Pickle Documentation

  • GitHub Security Advisory GHSA-jqmc-fxxp-r589

  • Tendenci Commit Update

  • Tendenci Commit Fix

  • Tendenci Commit Refactor

  • Tendenci Issue #867

  • Tendenci Release v15.3.12

  • Tendenci Security Advisory GHSA-339m-4qw5-j2g3
  • Related CVEs
  • CVE-2020-36962: Tendenci CSV Injection RCE Vulnerability

  • CVE-2025-70959: Tendenci CMS Stored XSS Vulnerability

  • CVE-2025-70960: Tendenci CMS Stored 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