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

CVE-2026-39339: ChurchCRM Auth Bypass Vulnerability

CVE-2026-39339 is a critical authentication bypass flaw in ChurchCRM that allows attackers to access protected API endpoints without credentials. This article covers the technical details, affected versions, and mitigation.

Published: April 10, 2026

CVE-2026-39339 Overview

CVE-2026-39339 is a critical authentication bypass vulnerability affecting ChurchCRM, an open-source church management system. Prior to version 7.1.0, a flaw in ChurchCRM's API middleware (ChurchCRM/Slim/Middleware/AuthMiddleware.php) allows unauthenticated attackers to access all protected API endpoints by including "api/public" anywhere in the request URL. This vulnerability leads to complete exposure of sensitive church member data and system information, posing significant risks to organizations using affected versions.

Critical Impact

Unauthenticated attackers can bypass all API authentication controls and gain complete access to protected endpoints, exposing sensitive church member personal information and system data.

Affected Products

  • ChurchCRM versions prior to 7.1.0
  • ChurchCRM API Middleware (AuthMiddleware.php)
  • All ChurchCRM deployments using the vulnerable Slim Framework middleware

Discovery Timeline

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

Technical Details for CVE-2026-39339

Vulnerability Analysis

This authentication bypass vulnerability (CWE-284: Improper Access Control) exists in the AuthMiddleware.php file within ChurchCRM's Slim Framework implementation. The middleware responsible for protecting API endpoints contains a flawed URL validation mechanism that fails to properly verify authentication status when certain URL patterns are present.

The vulnerability allows attackers to completely circumvent authentication controls by manipulating the request URL. When the string "api/public" appears anywhere within the request path, the middleware incorrectly treats the request as accessing a public endpoint, regardless of whether the actual target endpoint requires authentication. This design flaw enables full access to protected resources including member databases, financial records, and administrative functions without any credentials.

The attack can be executed remotely over the network without requiring any privileges or user interaction. Successful exploitation results in high-impact compromise of data confidentiality and integrity, though system availability remains unaffected.

Root Cause

The root cause lies in improper input validation within the AuthMiddleware.php file. The middleware uses a flawed string matching algorithm that checks if "api/public" exists anywhere in the URL path rather than validating that the URL specifically targets a designated public endpoint. This allows attackers to craft malicious URLs that include the bypass string while still routing to protected endpoints.

Attack Vector

The attack is network-based and requires no authentication or user interaction. An attacker can exploit this vulnerability by sending HTTP requests to any protected API endpoint while including "api/public" as a substring in the URL path. The middleware's flawed validation logic will then skip authentication checks entirely, granting the attacker full access to the requested resource.

For example, an attacker could craft a URL path that contains "api/public" while still targeting sensitive endpoints like member management, donation records, or administrative functions. The vulnerability is trivial to exploit and requires only basic knowledge of HTTP request manipulation.

Technical details and proof-of-concept information are available in the GitHub Security Advisory.

Detection Methods for CVE-2026-39339

Indicators of Compromise

  • Unusual API requests containing "api/public" substring patterns in unexpected URL positions
  • Unauthenticated access attempts to normally protected API endpoints
  • Anomalous data access patterns from external IP addresses without valid session tokens
  • Log entries showing successful API responses to requests that should require authentication

Detection Strategies

  • Implement web application firewall (WAF) rules to detect and block requests containing suspicious "api/public" patterns in non-standard URL positions
  • Monitor HTTP access logs for requests to protected endpoints that lack authentication headers or session cookies
  • Deploy intrusion detection systems (IDS) with custom signatures targeting the authentication bypass pattern
  • Audit API access logs for unauthorized data retrieval operations

Monitoring Recommendations

  • Enable detailed logging for all API middleware authentication decisions
  • Configure alerting for API access patterns that deviate from established baselines
  • Monitor for bulk data extraction attempts that could indicate post-exploitation activity
  • Review access logs regularly for requests containing anomalous URL patterns targeting sensitive endpoints

How to Mitigate CVE-2026-39339

Immediate Actions Required

  • Upgrade ChurchCRM to version 7.1.0 or later immediately
  • If immediate upgrade is not possible, restrict network access to the ChurchCRM application
  • Review API access logs for signs of historical exploitation
  • Implement web application firewall rules to block requests containing suspicious URL patterns

Patch Information

The vulnerability is fixed in ChurchCRM version 7.1.0. Organizations should upgrade to this version or later as soon as possible. The patch corrects the flawed URL validation logic in the AuthMiddleware.php file to properly enforce authentication requirements on all protected endpoints.

For detailed patch information, refer to the GitHub Security Advisory.

Workarounds

  • Place a reverse proxy or WAF in front of ChurchCRM to filter malicious requests
  • Implement network-level access controls to limit who can reach the ChurchCRM API
  • Disable public network access to the application until patching is complete
  • Consider temporarily disabling API functionality if it is not critical to operations
bash
# Example nginx configuration to block suspicious requests
location ~* api/public {
    # Only allow legitimate public API paths
    if ($uri !~ "^/api/public/") {
        return 403;
    }
}

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechChurchcrm

  • SeverityCRITICAL

  • CVSS Score9.1

  • EPSS Probability0.10%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-284
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-40480: ChurchCRM Auth Bypass Vulnerability

  • CVE-2026-39331: ChurchCRM Auth Bypass Vulnerability

  • CVE-2025-11938: ChurchCRM Deserialization 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