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
    • AI Data Pipelines
      Security Data Pipeline for AI SIEM and Data Optimization
    • 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-1058

CVE-2026-1058: Form Maker WordPress Plugin XSS Vulnerability

CVE-2026-1058 is a stored cross-site scripting vulnerability in the Form Maker WordPress plugin that allows unauthenticated attackers to inject malicious scripts. This article covers technical details, affected versions, and mitigation.

Published: February 6, 2026

CVE-2026-1058 Overview

The Form Maker plugin for WordPress contains a Stored Cross-Site Scripting (XSS) vulnerability in hidden field values processing. All versions up to and including 1.15.35 are affected by this security flaw, which allows unauthenticated attackers to inject malicious JavaScript code that executes when administrators view form submissions.

The vulnerability exists due to insufficient output escaping when displaying hidden field values in the admin submissions list. Specifically, the plugin uses html_entity_decode() on user-supplied hidden field values without subsequent escaping before output, which converts HTML entity-encoded payloads back into executable JavaScript.

Critical Impact

Unauthenticated attackers can inject arbitrary JavaScript that executes in administrator browsers when viewing form submissions, potentially leading to session hijacking, admin account compromise, or malicious site modifications.

Affected Products

  • Form Maker for WordPress versions up to and including 1.15.35
  • WordPress installations with vulnerable Form Maker plugin versions

Discovery Timeline

  • February 03, 2026 - CVE-2026-1058 published to NVD
  • February 03, 2026 - Last updated in NVD database

Technical Details for CVE-2026-1058

Vulnerability Analysis

This Stored Cross-Site Scripting vulnerability stems from improper handling of user-controlled data within the Form Maker plugin's admin interface. The flaw occurs in the Submissions_fm.php file where hidden field values from form submissions are displayed to administrators.

When a form submission containing hidden fields is processed, the plugin retrieves these values and passes them through html_entity_decode() before rendering them in the admin submissions view. This function converts HTML entities (such as <script>) back into their original characters (<script>), effectively reversing any encoding that might have been applied to the malicious input.

The absence of proper output escaping after this decoding operation means that an attacker can craft a payload using HTML entity encoding, which will be decoded and rendered as executable JavaScript in the administrator's browser context.

Root Cause

The root cause is the improper use of html_entity_decode() on user-supplied input without subsequent output escaping. The vulnerable code path in Submissions_fm.php (line 759 in version 1.15.34) decodes HTML entities in hidden field values, then outputs the result directly to the admin page without sanitization, violating secure coding practices for handling untrusted data.

Attack Vector

This vulnerability is exploitable over the network without authentication. An attacker can submit a form on any WordPress site using the vulnerable Form Maker plugin, including a specially crafted payload in a hidden field value. The payload uses HTML entity encoding to bypass any initial input filtering.

When an administrator accesses the submissions list in the WordPress admin panel, the stored payload is decoded by html_entity_decode() and rendered in the browser, executing the attacker's JavaScript code within the authenticated admin session. This can lead to cookie theft, session hijacking, unauthorized administrative actions, or the creation of rogue admin accounts.

The attack requires user interaction (an administrator must view the submissions), but once triggered, the malicious script executes with the privileges of the authenticated administrator.

Detection Methods for CVE-2026-1058

Indicators of Compromise

  • Form submissions containing HTML entity-encoded script tags or event handlers in hidden field values
  • Unexpected JavaScript execution or browser alerts when viewing form submissions in the admin panel
  • Unusual admin account creation or privilege changes following form submission reviews
  • Suspicious outbound connections from administrator browsers after accessing the submissions page

Detection Strategies

  • Monitor Form Maker submission data for patterns indicative of XSS payloads, including encoded script elements
  • Implement web application firewall (WAF) rules to detect and block HTML entity-encoded XSS attempts in form submissions
  • Review WordPress admin audit logs for anomalous actions taken after accessing Form Maker submissions
  • Deploy browser-based security controls or Content Security Policy headers to mitigate script execution

Monitoring Recommendations

  • Enable detailed logging for Form Maker plugin activities and submission processing
  • Configure alerts for form submissions containing suspicious patterns such as <script, <script, or JavaScript event handlers
  • Monitor WordPress user activity logs for privilege escalation or new admin account creation
  • Regularly review the Form Maker submissions table for signs of injection attempts

How to Mitigate CVE-2026-1058

Immediate Actions Required

  • Update Form Maker plugin to a version newer than 1.15.35 that includes the security patch
  • Review recent form submissions for potential XSS payloads and remove any malicious entries
  • Audit WordPress admin accounts for any unauthorized changes or new accounts
  • Consider temporarily disabling the Form Maker plugin if an immediate update is not possible

Patch Information

The vulnerability was addressed in the Form Maker plugin through a code changeset that implements proper output escaping for hidden field values. The fix ensures that user-supplied data is safely encoded before being rendered in the admin interface.

For technical details on the vulnerability and the fix, refer to the WordPress Plugin Source Code, the WordPress Plugin Changeset, and the Wordfence Vulnerability Analysis.

Workarounds

  • Restrict access to the Form Maker submissions page to only essential administrative users until the plugin is updated
  • Implement a Content Security Policy (CSP) header that restricts inline script execution to reduce XSS impact
  • Use a WordPress security plugin or WAF to filter and sanitize form submission data before it reaches the plugin
  • Disable hidden fields in forms temporarily if they are not critical to form functionality
bash
# Example: Add Content Security Policy header in .htaccess to mitigate XSS impact
Header set Content-Security-Policy "default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'"

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

  • Vulnerability Details
  • TypeXSS

  • Vendor/TechWordpress

  • SeverityHIGH

  • CVSS Score7.1

  • EPSS Probability0.08%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:L
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityLow
  • AvailabilityLow
  • CWE References
  • CWE-79
  • Technical References
  • WordPress Plugin Source Code

  • WordPress Plugin Changeset

  • Wordfence Vulnerability Analysis
  • Related CVEs
  • CVE-2026-7448: LatePoint WordPress Plugin XSS Vulnerability

  • CVE-2026-7332: LatePoint WordPress Plugin XSS Vulnerability

  • CVE-2026-7457: WordPress LatePoint Plugin XSS Vulnerability

  • CVE-2026-6672: SliceWP Affiliates Plugin XSS Vulnerability
Default Legacy - Prefooter | 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