Security Vulnerability Report
中文
CVE-2025-68586 CVSS 5.3 MEDIUM

CVE-2025-68586

Published: 2025-12-24 13:16:26
Last Modified: 2026-04-27 19:16:34

Description

Missing Authorization vulnerability in Gora Tech Cooked cooked allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Cooked: from n/a through <= 1.11.3.

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.

Cooked <= 1.11.3

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-68586 PoC - WordPress Cooked Plugin Broken Access Control # Target: WordPress site with Cooked plugin <= 1.11.3 def check_vulnerability(target_url): """Check if target is vulnerable to CVE-2025-68586""" # Common Cooked plugin endpoints that may be affected endpoints = [ '/wp-admin/admin-ajax.php', '/wp-json/cooked/v1/', '/?cooked_api=1' ] print(f"[*] Testing target: {target_url}") print(f"[*] Vulnerability: Missing Authorization in Cooked Plugin") print(f"[*] CVSS Score: 5.3 (Medium)") print("-" * 50) # Test unauthenticated access to admin functions # Replace with actual vulnerable endpoint based on version for endpoint in endpoints: url = target_url.rstrip('/') + endpoint try: response = requests.get(url, timeout=10, verify=False) print(f"[+] Tested endpoint: {url}") print(f" Status: {response.status_code}") except requests.RequestException as e: print(f"[-] Error accessing {url}: {e}") print("\n[*] PoC completed. Manual verification needed.") print("[*] Recommendation: Upgrade Cooked plugin to version > 1.11.3") if __name__ == "__main__": if len(sys.argv) < 2: print(f"Usage: python {sys.argv[0]} <target_url>") print(f"Example: python {sys.argv[0]} http://example.com") sys.exit(1) target = sys.argv[1] check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68586", "sourceIdentifier": "[email protected]", "published": "2025-12-24T13:16:25.860", "lastModified": "2026-04-27T19:16:34.050", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Gora Tech Cooked cooked allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Cooked: from n/a through <= 1.11.3."}], "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/Plugin/cooked/vulnerability/wordpress-cooked-plugin-1-11-2-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}