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

CVE-2026-24854: ChurchCRM SQL Injection Vulnerability

CVE-2026-24854 is a SQL injection vulnerability in ChurchCRM that allows any authenticated user to exploit the PerID parameter in PaddleNumEditor.php. This article covers technical details, affected versions, and mitigation steps.

Published: February 6, 2026

CVE-2026-24854 Overview

CVE-2026-24854 is a SQL Injection vulnerability in ChurchCRM, an open-source church management system. The vulnerability exists in the /PaddleNumEditor.php endpoint, where the PerID parameter is not properly sanitized before being used in SQL queries. Any authenticated user, including those with zero assigned permissions, can exploit this flaw to execute arbitrary SQL commands against the underlying database.

Critical Impact

Authenticated attackers can leverage this SQL injection to read, modify, or delete sensitive church member data, potentially compromising the entire database containing personal information, financial records, and confidential communications.

Affected Products

  • ChurchCRM versions prior to 6.7.2
  • All ChurchCRM installations with authenticated user access
  • Deployments using the vulnerable PaddleNumEditor.php endpoint

Discovery Timeline

  • 2026-01-30 - CVE CVE-2026-24854 published to NVD
  • 2026-02-04 - Last updated in NVD database

Technical Details for CVE-2026-24854

Vulnerability Analysis

This SQL Injection vulnerability (CWE-89) stems from insufficient input validation in the PaddleNumEditor.php file. The application accepts user-controlled input through the PerID POST parameter and incorporates it directly into SQL queries without proper sanitization or parameterization. This allows attackers to manipulate the SQL query structure by injecting malicious SQL code through the vulnerable parameter.

The vulnerability is particularly concerning because it requires only basic authentication to exploit—even users with no assigned permissions within the ChurchCRM system can leverage this attack vector. This means any compromised or malicious account holder can potentially access the entire database, exfiltrate sensitive congregational data, or cause significant data integrity issues.

Root Cause

The root cause is the use of InputUtils::legacyFilterInput() without explicit type casting for integer parameters. The PerID and related parameters were being passed through legacy filtering that did not adequately prevent SQL injection payloads. The vulnerable code directly concatenated user input into SQL query strings, a classic pattern that enables SQL injection attacks.

Attack Vector

An authenticated attacker can send a crafted HTTP POST request to the /PaddleNumEditor.php endpoint with a malicious payload in the PerID parameter. Since the parameter is used in multiple SQL queries (SELECT, UPDATE, INSERT, DELETE statements), the attacker has multiple injection points to exploit. The network-accessible nature of this vulnerability allows remote exploitation from any authenticated session.

php
// Vulnerable code pattern (before patch)
// The PerID parameter was passed to legacyFilterInput without integer casting
$iPerID = InputUtils::legacyFilterInput($_POST['PerID']);

// This allowed SQL injection when PerID was used in queries like:
$sqlNumBought = 'SELECT mb_count from multibuy_mb WHERE mb_per_ID=' . $iPerID . ' AND mb_item_ID=' . $di_ID;

// Patched code casts to integer, preventing injection:
$iPerID = (int) InputUtils::legacyFilterInput($_POST['PerID']);

Source: GitHub Commit Details

Detection Methods for CVE-2026-24854

Indicators of Compromise

  • Unusual or malformed requests to /PaddleNumEditor.php containing SQL syntax characters (single quotes, semicolons, UNION keywords)
  • Database error messages in application logs related to the multibuy_mb table or invalid SQL syntax
  • Unexpected database queries or access patterns from the ChurchCRM application user account
  • Evidence of data exfiltration or unauthorized data access in database audit logs

Detection Strategies

  • Implement Web Application Firewall (WAF) rules to detect and block SQL injection patterns in POST requests to PaddleNumEditor.php
  • Monitor web server access logs for suspicious requests containing SQL metacharacters in the PerID parameter
  • Enable database query logging and alert on anomalous query patterns or syntax errors
  • Deploy application-layer intrusion detection to identify SQL injection attack signatures

Monitoring Recommendations

  • Enable detailed logging for all requests to the /PaddleNumEditor.php endpoint
  • Configure database audit logging to track queries against the multibuy_mb table
  • Set up alerting for authentication anomalies where low-privilege users access administrative endpoints
  • Monitor for unusual data access patterns that may indicate post-exploitation data exfiltration

How to Mitigate CVE-2026-24854

Immediate Actions Required

  • Upgrade ChurchCRM to version 6.7.2 or later immediately
  • Review database audit logs for evidence of exploitation prior to patching
  • Audit all user accounts and remove unnecessary access privileges
  • Consider temporarily restricting access to the PaddleNumEditor.php endpoint until patching is complete

Patch Information

ChurchCRM has released version 6.7.2 which addresses this vulnerability. The patch implements explicit integer type casting on the PerID, Num, MBCount, and di_ID parameters before they are used in SQL queries. This prevents SQL injection by ensuring only integer values are passed to the database queries.

The security fix can be reviewed in the GitHub Commit Details (commit 748f5084fc06c5e12463dc7fdd62d1d31fc08d38). Additional information is available in the GitHub Security Advisory GHSA-p3q7-q68q-h2gr.

Workarounds

  • If immediate patching is not possible, restrict network access to the ChurchCRM application to trusted IP addresses only
  • Implement a Web Application Firewall with SQL injection protection rules targeting the vulnerable endpoint
  • Disable or restrict access to the PaddleNumEditor.php functionality until the patch can be applied
  • Review and minimize the number of authenticated user accounts with access to the system
bash
# Example: Restrict access to vulnerable endpoint via Apache .htaccess
# Place in ChurchCRM web root directory
<Files "PaddleNumEditor.php">
    Order deny,allow
    Deny from all
    # Allow only from trusted admin IP addresses
    Allow from 192.168.1.0/24
    Allow from 10.0.0.0/8
</Files>

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

  • Vulnerability Details
  • TypeSQLI

  • Vendor/TechChurchcrm

  • SeverityHIGH

  • CVSS Score8.8

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-89
  • Technical References
  • GitHub Commit Details

  • GitHub Security Advisory GHSA-p3q7-q68q-h2gr
  • Related CVEs
  • CVE-2026-39340: ChurchCRM SQL Injection Vulnerability

  • CVE-2026-39318: ChurchCRM SQL Injection Vulnerability

  • CVE-2026-39342: ChurchCRM SQL Injection Vulnerability

  • CVE-2026-39341: ChurchCRM SQL Injection 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