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

CVE-2026-35573: ChurchCRM Path Traversal RCE Vulnerability

CVE-2026-35573 is a path traversal remote code execution flaw in ChurchCRM's backup restore functionality that allows administrators to upload malicious files. This post covers technical details, affected versions, and mitigation.

Published: April 10, 2026

CVE-2026-35573 Overview

CVE-2026-35573 is a critical path traversal vulnerability in ChurchCRM, an open-source church management system. Prior to version 6.5.3, the backup restore functionality contains a flaw that allows authenticated administrators to upload arbitrary files and achieve remote code execution by overwriting Apache .htaccess configuration files. The vulnerability exists in src/ChurchCRM/Backup/RestoreJob.php, where the $rawUploadedFile['name'] parameter is user-controlled, enabling attackers to upload files with arbitrary names to /var/www/html/tmp_attach/ChurchCRMBackups/.

Critical Impact

Authenticated administrators can exploit this path traversal vulnerability to achieve remote code execution by uploading malicious files and overwriting critical web server configuration files.

Affected Products

  • ChurchCRM versions prior to 6.5.3

Discovery Timeline

  • 2026-04-07 - CVE-2026-35573 published to NVD
  • 2026-04-08 - Last updated in NVD database

Technical Details for CVE-2026-35573

Vulnerability Analysis

This vulnerability represents a classic path traversal attack (CWE-22) combined with arbitrary file upload capabilities, creating a direct path to remote code execution. The weakness resides in the backup restoration process where user-supplied filenames are not properly sanitized before being used in file system operations.

The vulnerable code in src/ChurchCRM/Backup/RestoreJob.php accepts the $rawUploadedFile['name'] parameter directly from user input. Without adequate validation, an attacker can craft a filename containing directory traversal sequences (such as ../) to escape the intended upload directory and write files to arbitrary locations on the server.

While this vulnerability requires administrator-level authentication to exploit, the impact is severe because it allows complete server compromise. An attacker with administrator credentials can leverage this flaw to overwrite Apache .htaccess files, effectively reconfiguring the web server to execute arbitrary code or redirect traffic.

Root Cause

The root cause of CVE-2026-35573 is improper input validation in the backup restore functionality. The application fails to sanitize or validate the filename parameter before using it in file system operations. Specifically, the $rawUploadedFile['name'] variable is passed directly to file handling functions without removing or blocking path traversal sequences like ../ or ..\\. This allows an attacker to control the destination path where uploaded files are written, breaking out of the intended /var/www/html/tmp_attach/ChurchCRMBackups/ directory.

Attack Vector

The attack vector involves an authenticated administrator crafting a malicious backup file with a specially crafted filename containing path traversal sequences. The exploitation flow is as follows:

  1. An attacker with administrator credentials accesses the backup restore functionality
  2. The attacker uploads a file with a crafted filename such as ../../../var/www/html/.htaccess
  3. The application writes the file to the attacker-controlled path instead of the intended backup directory
  4. By overwriting the .htaccess file, the attacker can configure Apache to execute PHP code from uploaded files or redirect application behavior
  5. The attacker then uploads a malicious PHP webshell and gains remote code execution on the server

For detailed technical information, see the GitHub Security Advisory.

Detection Methods for CVE-2026-35573

Indicators of Compromise

  • Suspicious file uploads containing path traversal sequences (../) in the filename
  • Unexpected modifications to .htaccess files in the web root or other directories
  • Presence of unfamiliar PHP files or webshells in web-accessible directories
  • Unusual administrative activity in ChurchCRM backup restore logs
  • Apache configuration changes that enable execution of uploaded files

Detection Strategies

  • Monitor web server logs for requests to the backup restore endpoint with unusual filename parameters
  • Implement file integrity monitoring on critical configuration files including .htaccess
  • Configure web application firewalls (WAF) to detect and block path traversal sequences in file upload parameters
  • Review ChurchCRM audit logs for suspicious administrator backup restore operations
  • Deploy endpoint detection and response (EDR) solutions to identify unexpected file writes outside designated directories

Monitoring Recommendations

  • Enable detailed logging for file system operations on the ChurchCRM server
  • Set up alerts for any modifications to .htaccess files or Apache configuration
  • Monitor for new or modified PHP files in web-accessible directories
  • Implement real-time alerting for backup restore operations performed outside of maintenance windows

How to Mitigate CVE-2026-35573

Immediate Actions Required

  • Upgrade ChurchCRM to version 6.5.3 or later immediately
  • Review administrator accounts and remove unnecessary elevated privileges
  • Audit recent backup restore operations for signs of exploitation
  • Verify the integrity of .htaccess files and other critical configuration files
  • Consider temporarily restricting access to the backup restore functionality until patching is complete

Patch Information

ChurchCRM has released version 6.5.3 which addresses this vulnerability by implementing proper input validation for uploaded filenames. The patch sanitizes the $rawUploadedFile['name'] parameter to prevent path traversal sequences from being used to write files outside the intended backup directory.

Organizations running ChurchCRM should update to version 6.5.3 or later. For more information, refer to the GitHub Security Advisory.

Workarounds

  • Restrict access to the backup restore functionality to only essential personnel
  • Implement network-level access controls to limit which IP addresses can access administrative functions
  • Deploy a web application firewall (WAF) configured to block path traversal sequences in file upload requests
  • Enable file integrity monitoring on the web root directory to detect unauthorized file modifications
  • Consider disabling the backup restore feature entirely until the patch can be applied

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechChurchcrm

  • SeverityCRITICAL

  • CVSS Score9.1

  • EPSS Probability0.24%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:C/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-22
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2025-11938: ChurchCRM Deserialization RCE Vulnerability

  • CVE-2026-40484: ChurchCRM RCE Vulnerability

  • CVE-2026-39337: ChurchCRM RCE Vulnerability

  • CVE-2026-40593: ChurchCRM User Editor 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