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-2025-1023

CVE-2025-1023: ChurchCRM SQL Injection Vulnerability

CVE-2025-1023 is a time-based blind SQL injection flaw in ChurchCRM 5.13.0 and earlier that allows attackers to execute arbitrary SQL queries. This article covers technical details, affected versions, impact, and mitigation.

Published: April 1, 2026

CVE-2025-1023 Overview

A critical time-based blind SQL Injection vulnerability exists in ChurchCRM 5.13.0 and prior versions. The vulnerability resides in the EditEventTypes functionality where the newCountName parameter is directly concatenated into an SQL query without proper sanitization. This allows an authenticated attacker with high privileges to manipulate database queries and execute arbitrary SQL commands through network-accessible endpoints.

Critical Impact

Successful exploitation allows attackers to exfiltrate, modify, or delete sensitive church member data, financial records, and other confidential information stored in the ChurchCRM database.

Affected Products

  • ChurchCRM versions 5.13.0 and prior
  • All ChurchCRM installations using the EditEventTypes functionality
  • ChurchCRM deployments accessible via network

Discovery Timeline

  • 2025-02-18 - CVE-2025-1023 published to NVD
  • 2025-02-21 - Last updated in NVD database

Technical Details for CVE-2025-1023

Vulnerability Analysis

This vulnerability is classified as CWE-89 (SQL Injection), one of the most dangerous web application security flaws. The EditEventTypes functionality in ChurchCRM fails to implement proper input validation and parameterized queries when handling the newCountName parameter. Instead of using prepared statements or proper escaping mechanisms, the application directly concatenates user-supplied input into SQL queries.

The time-based blind nature of this SQL injection means that attackers cannot directly observe the results of their injected queries in the application response. Instead, they must infer information by crafting SQL payloads that cause deliberate time delays when certain conditions are true. This technique, while slower than direct SQL injection, remains highly effective for data extraction and database manipulation.

Root Cause

The root cause of this vulnerability is the improper handling of user input in the EditEventTypes functionality. The newCountName parameter is passed directly to the SQL query builder without sanitization, parameterization, or proper escaping. This fundamental coding error violates secure development best practices that mandate the use of prepared statements or parameterized queries for all database interactions involving user-supplied data.

Attack Vector

The attack is network-based and requires an authenticated attacker with high-level privileges to access the EditEventTypes functionality. Once authenticated, the attacker can craft malicious SQL payloads within the newCountName parameter to perform time-based inference attacks against the underlying database.

An attacker would typically inject SQL statements containing time-delay functions such as SLEEP() (MySQL) or WAITFOR DELAY (SQL Server) to determine if their injected conditions evaluate to true. By systematically querying character-by-character, attackers can extract sensitive database contents including usernames, password hashes, financial data, and personal member information.

The vulnerability allows for:

  • Data exfiltration through time-based inference
  • Arbitrary data modification or deletion
  • Potential database server compromise depending on database configuration
  • Lateral movement if database credentials are reused

Detection Methods for CVE-2025-1023

Indicators of Compromise

  • Unusual time delays in HTTP responses from ChurchCRM EditEventTypes endpoints
  • Abnormal database query execution times logged in database slow query logs
  • Multiple requests to EditEventTypes with unusual or encoded characters in the newCountName parameter
  • Database errors or anomalies related to SQL syntax in application logs

Detection Strategies

  • Monitor web application logs for requests containing SQL injection keywords such as SLEEP, WAITFOR, BENCHMARK, or UNION SELECT in the newCountName parameter
  • Implement database activity monitoring to detect unusual query patterns or extended query execution times
  • Deploy Web Application Firewall (WAF) rules to detect and block common SQL injection payloads
  • Enable and review database audit logging for suspicious query patterns

Monitoring Recommendations

  • Configure alerting for HTTP requests to EditEventTypes endpoints with abnormal response times exceeding typical thresholds
  • Implement real-time log analysis for SQL injection indicators in web server and application logs
  • Monitor database connection patterns for unusual activity from the ChurchCRM application user account
  • Review access logs for repeated attempts to access the EditEventTypes functionality with varying parameters

How to Mitigate CVE-2025-1023

Immediate Actions Required

  • Restrict network access to ChurchCRM installations to trusted IP ranges only
  • Implement Web Application Firewall (WAF) rules to filter SQL injection attempts targeting the newCountName parameter
  • Review and audit database user privileges to ensure least-privilege principles are applied
  • Enable detailed logging on the ChurchCRM application and underlying database for forensic analysis

Patch Information

At the time of publication, users should monitor the ChurchCRM GitHub Issue Tracker for official patch releases addressing this vulnerability. Organizations running ChurchCRM should regularly check for updates and apply security patches as soon as they become available.

Workarounds

  • Implement a Web Application Firewall with SQL injection detection rules in front of ChurchCRM deployments
  • Restrict access to the EditEventTypes functionality to only essential administrative users
  • Consider disabling or removing the EditEventTypes functionality if not operationally required until a patch is available
  • Apply network segmentation to isolate ChurchCRM from sensitive internal systems
bash
# Example: Restrict access to ChurchCRM via iptables
# Only allow connections from trusted administrative IP addresses
iptables -A INPUT -p tcp --dport 80 -s 192.168.1.0/24 -j ACCEPT
iptables -A INPUT -p tcp --dport 443 -s 192.168.1.0/24 -j ACCEPT
iptables -A INPUT -p tcp --dport 80 -j DROP
iptables -A INPUT -p tcp --dport 443 -j DROP

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

  • Vulnerability Details
  • TypeSQLI

  • Vendor/TechChurchcrm

  • SeverityCRITICAL

  • CVSS Score9.3

  • EPSS Probability2.62%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:H/UI:N/VC:H/VI:H/VA:H/SC:H/SI:L/SA:H/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:Y/R:U/V:C/RE:H/U:Red
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-89
  • Technical References
  • GitHub Issue Tracker Entry
  • Related CVEs
  • CVE-2026-40482: ChurchCRM SQL Injection Vulnerability

  • CVE-2026-39340: ChurchCRM SQL Injection Vulnerability

  • CVE-2026-39318: ChurchCRM SQL Injection Vulnerability

  • CVE-2026-39342: 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