The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI for Security
      Leading the Way in AI-Powered Security Solutions
    • Securing AI
      Accelerate AI Adoption with Secure AI Tools, Apps, and Agents.
    • How It Works
      The Singularity XDR Difference
    • Singularity Marketplace
      One-Click Integrations to Unlock the Power of XDR
    • Pricing & Packaging
      Comparisons and Guidance at a Glance
    Data & AI
    • Purple AI
      Accelerate SecOps with Generative AI
    • Singularity Hyperautomation
      Easily Automate Security Processes
    • AI-SIEM
      The AI SIEM for the Autonomous SOC
    • Singularity Data Lake
      AI-Powered, Unified Data Lake
    • Singularity Data Lake for Log Analytics
      Seamlessly Ingest Data from On-Prem, Cloud or Hybrid Environments
    Endpoint Security
    • Singularity Endpoint
      Autonomous Prevention, Detection, and Response
    • Singularity XDR
      Native & Open Protection, Detection, and Response
    • Singularity RemoteOps Forensics
      Orchestrate Forensics at Scale
    • Singularity Threat Intelligence
      Comprehensive Adversary Intelligence
    • Singularity Vulnerability Management
      Application & OS Vulnerability Management
    • Singularity Identity
      Identity Threat Detection and Response
    Cloud Security
    • Singularity Cloud Security
      Block Attacks with an AI-Powered CNAPP
    • Singularity Cloud Native Security
      Secure Cloud and Development Resources
    • Singularity Cloud Workload Security
      Real-Time Cloud Workload Protection Platform
    • Singularity Cloud Data Security
      AI-Powered Threat Detection for Cloud Storage
    • Singularity Cloud Security Posture Management
      Detect and Remediate Cloud Misconfigurations
    Securing AI
    • Prompt Security
      Secure AI Tools Across Your Enterprise
  • Why SentinelOne?
    Why SentinelOne?
    • Why SentinelOne?
      Cybersecurity Built for What’s Next
    • Our Customers
      Trusted by the World’s Leading Enterprises
    • Industry Recognition
      Tested and Proven by the Experts
    • About Us
      The Industry Leader in Autonomous Cybersecurity
    Compare SentinelOne
    • Arctic Wolf
    • Broadcom
    • CrowdStrike
    • Cybereason
    • Microsoft
    • Palo Alto Networks
    • Sophos
    • Splunk
    • Trellix
    • Trend Micro
    • Wiz
    Verticals
    • Energy
    • Federal Government
    • Finance
    • Healthcare
    • Higher Education
    • K-12 Education
    • Manufacturing
    • Retail
    • State and Local Government
  • Services
    Managed Services
    • Managed Services Overview
      Wayfinder Threat Detection & Response
    • Threat Hunting
      World-Class Expertise and Threat Intelligence
    • Managed Detection & Response
      24/7/365 Expert MDR Across Your Entire Environment
    • Incident Readiness & Response
      DFIR, Breach Readiness, & Compromise Assessments
    Support, Deployment, & Health
    • Technical Account Management
      Customer Success with Personalized Service
    • SentinelOne GO
      Guided Onboarding & Deployment Advisory
    • SentinelOne University
      Live and On-Demand Training
    • Services Overview
      Comprehensive Solutions for Seamless Security Operations
    • SentinelOne Community
      Community Login
  • Partners
    Our Network
    • MSSP Partners
      Succeed Faster with SentinelOne
    • Singularity Marketplace
      Extend the Power of S1 Technology
    • Cyber Risk Partners
      Enlist Pro Response and Advisory Teams
    • Technology Alliances
      Integrated, Enterprise-Scale Solutions
    • SentinelOne for AWS
      Hosted in AWS Regions Around the World
    • Channel Partners
      Deliver the Right Solutions, Together
    • SentinelOne for Google Cloud
      Unified, Autonomous Security Giving Defenders the Advantage at Global Scale
    • Partner Locator
      Your Go-to Source for Our Top Partners in Your Region
    Partner Portal→
  • Resources
    Resource Center
    • Case Studies
    • Data Sheets
    • eBooks
    • Reports
    • Videos
    • Webinars
    • Whitepapers
    • Events
    View All Resources→
    Blog
    • Feature Spotlight
    • For CISO/CIO
    • From the Front Lines
    • Identity
    • Cloud
    • macOS
    • SentinelOne Blog
    Blog→
    Tech Resources
    • SentinelLABS
    • Ransomware Anthology
    • Cybersecurity 101
  • About
    About SentinelOne
    • About SentinelOne
      The Industry Leader in Cybersecurity
    • Investor Relations
      Financial Information & Events
    • SentinelLABS
      Threat Research for the Modern Threat Hunter
    • Careers
      The Latest Job Opportunities
    • Press & News
      Company Announcements
    • Cybersecurity Blog
      The Latest Cybersecurity Threats, News, & More
    • FAQ
      Get Answers to Our Most Frequently Asked Questions
    • DataSet
      The Live Data Platform
    • S Foundation
      Securing a Safer Future for All
    • S Ventures
      Investing in the Next Generation of Security, Data and AI
  • Pricing
Get StartedContact Us
CVE Vulnerability Database
Vulnerability Database/CVE-2026-3546

CVE-2026-3546: e-shot Form Builder Information Disclosure

CVE-2026-3546 is an information disclosure vulnerability in the e-shot Form Builder plugin for WordPress, allowing authenticated attackers to extract API tokens. This article covers technical details, affected versions, and mitigation.

Published: March 27, 2026

CVE-2026-3546 Overview

The e-shot form builder plugin for WordPress contains a Sensitive Information Exposure vulnerability in all versions up to and including 1.0.2. The eshot_form_builder_get_account_data() function is registered as a wp_ajax_ AJAX handler accessible to all authenticated users. Due to missing capability checks and nonce verification, any authenticated user with Subscriber-level access or above can extract the e-shot API token and subaccount information from the database.

Critical Impact

Authenticated attackers can extract e-shot API tokens and subaccount data, enabling unauthorized access to the victim's e-shot email marketing platform account.

Affected Products

  • e-shot form builder plugin for WordPress version 1.0.2 and earlier

Discovery Timeline

  • 2026-03-21 - CVE CVE-2026-3546 published to NVD
  • 2026-03-23 - Last updated in NVD database

Technical Details for CVE-2026-3546

Vulnerability Analysis

This vulnerability represents a classic case of broken access control in WordPress plugin development. The eshot_form_builder_get_account_data() function fails to implement proper authorization controls, creating a direct path for any authenticated user to access sensitive configuration data.

The vulnerable function is registered as a WordPress AJAX handler using the wp_ajax_ action hook, which makes it available to any logged-in user. The function directly queries the eshotformbuilder_control database table to retrieve the stored e-shot API token and returns it along with all subaccount data in a JSON response. This design flaw allows low-privileged users (Subscribers) to access administrative-level data that should only be available to users with the manage_options capability.

Root Cause

The root cause is the absence of two critical security controls in the AJAX handler:

  1. Missing Capability Check: The function does not call current_user_can('manage_options') or any similar capability check to verify that the requesting user has administrative privileges.

  2. Missing Nonce Verification: The function does not verify a nonce token using wp_verify_nonce() or check_ajax_referer(), which would help prevent both CSRF attacks and ensure the request originates from a legitimate WordPress session.

These missing controls allow any authenticated WordPress user to invoke the AJAX action and retrieve sensitive API credentials stored in the database.

Attack Vector

An attacker with any authenticated access to the WordPress site (even a basic Subscriber account) can exploit this vulnerability through the following attack flow:

The attacker authenticates to the WordPress installation with any valid user credentials, then crafts an AJAX request to the wp_ajax_eshot_form_builder_get_account_data action endpoint. The vulnerable function processes this request without verifying the user's capabilities and returns the e-shot API token and subaccount information as a JSON response.

With the extracted API credentials, the attacker can then access the victim's e-shot email marketing platform to perform unauthorized actions such as accessing contact lists, sending emails, or modifying account settings.

Detection Methods for CVE-2026-3546

Indicators of Compromise

  • Unusual AJAX requests to admin-ajax.php with action parameter eshot_form_builder_get_account_data from non-administrator users
  • Access logs showing requests to the plugin's AJAX endpoints from Subscriber or Contributor user sessions
  • Unexpected access patterns to the e-shot email marketing platform from new IP addresses or locations
  • Audit trail entries showing API token retrieval by low-privileged WordPress users

Detection Strategies

  • Monitor WordPress AJAX request logs for access to eshot_form_builder_get_account_data action by non-administrator users
  • Implement web application firewall rules to alert on suspicious parameter combinations targeting the vulnerable endpoint
  • Review e-shot platform access logs for authentication from unexpected sources that may indicate token theft
  • Enable WordPress security plugin logging to track AJAX action invocations and correlate with user privilege levels

Monitoring Recommendations

  • Configure real-time alerting for AJAX requests to the vulnerable endpoint from accounts without administrative privileges
  • Set up monitoring for the e-shot API to detect unusual authentication patterns or access from new IP addresses
  • Review WordPress user registration and login activity for potential attacker account creation
  • Monitor for bulk data exfiltration from the e-shot platform following potential credential theft

How to Mitigate CVE-2026-3546

Immediate Actions Required

  • Deactivate and remove the e-shot form builder plugin version 1.0.2 or earlier from WordPress installations
  • Rotate the e-shot API token immediately to invalidate any potentially compromised credentials
  • Audit WordPress user accounts and remove any unauthorized Subscriber or low-privilege accounts
  • Review e-shot platform access logs for unauthorized activity during the exposure window

Patch Information

As of the last NVD update on 2026-03-23, no official patch has been confirmed. Site administrators should monitor the Wordfence Vulnerability Report for updates on remediation status. Plugin source code can be reviewed at the WordPress Plugin Repository.

Workarounds

  • Disable the e-shot form builder plugin until a patched version is released
  • Restrict WordPress user registration to prevent attackers from obtaining authenticated access
  • Implement web application firewall rules to block requests to the vulnerable AJAX action
  • Consider using a different form builder plugin that has been audited for security vulnerabilities
bash
# Disable the vulnerable plugin via WP-CLI
wp plugin deactivate e-shot-form-builder

# Or remove the plugin entirely
wp plugin delete e-shot-form-builder

# Audit current users with subscriber role
wp user list --role=subscriber --fields=ID,user_login,user_email,user_registered

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechWordpress

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-202
  • Technical References
  • WordPress Plugin Admin Code

  • WordPress Plugin Includes Code

  • WordPress Plugin Admin Code

  • WordPress Plugin Includes Code

  • Wordfence Vulnerability Report
  • Related CVEs
  • CVE-2026-2343: Ultimate Invoice Plugin Info Disclosure

  • CVE-2026-2351: Task Manager WordPress Information Disclosure

  • CVE-2025-10734: ReviewX WordPress Plugin Data Exposure Flaw

  • CVE-2025-10731: ReviewX Plugin Information Disclosure
Experience the World’s Most Advanced Cybersecurity Platform

Experience the World’s Most Advanced Cybersecurity Platform

See how our intelligent, autonomous cybersecurity platform can protect your organization now and into the future.

Try SentinelOne
  • Get Started
  • Get a Demo
  • Product Tour
  • Why SentinelOne
  • Pricing & Packaging
  • FAQ
  • Contact
  • Contact Us
  • Customer Support
  • SentinelOne Status
  • Language
  • Platform
  • Singularity Platform
  • Singularity Endpoint
  • Singularity Cloud
  • Singularity AI-SIEM
  • Singularity Identity
  • Singularity Marketplace
  • Purple AI
  • Services
  • Wayfinder TDR
  • SentinelOne GO
  • Technical Account Management
  • Support Services
  • Verticals
  • Energy
  • Federal Government
  • Finance
  • Healthcare
  • Higher Education
  • K-12 Education
  • Manufacturing
  • Retail
  • State and Local Government
  • Cybersecurity for SMB
  • Resources
  • Blog
  • Labs
  • Case Studies
  • Videos
  • Product Tours
  • Events
  • Cybersecurity 101
  • eBooks
  • Webinars
  • Whitepapers
  • Press
  • News
  • Ransomware Anthology
  • Company
  • About Us
  • Our Customers
  • Careers
  • Partners
  • Legal & Compliance
  • Security & Compliance
  • Investor Relations
  • S Foundation
  • S Ventures

©2026 SentinelOne, All Rights Reserved.

Privacy Notice Terms of Use

English