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-2400

CVE-2026-2400: CRLF Injection Auth Bypass Vulnerability

CVE-2026-2400 is a CRLF injection vulnerability that enables authentication bypass through credential resets when Web Admin users manipulate POST requests. This article covers technical details, impact, and mitigation.

Published: April 17, 2026

CVE-2026-2400 Overview

CVE-2026-2400 is a CRLF Injection vulnerability (CWE-93: Improper Neutralization of CRLF Sequences) that affects Schneider Electric products. This vulnerability exists in the web administration interface and could allow an authenticated attacker to reset application user credentials by manipulating the POST /setPCBEDesc request payload with specially crafted CRLF sequences.

Critical Impact

Authenticated attackers can exploit CRLF injection in the /setPCBEDesc endpoint to trigger unintended credential resets, potentially disrupting access for legitimate users and compromising system integrity.

Affected Products

  • Schneider Electric Industrial Control Systems (specific product details available in the vendor security advisory)

Discovery Timeline

  • 2026-04-14 - CVE CVE-2026-2400 published to NVD
  • 2026-04-14 - Last updated in NVD database

Technical Details for CVE-2026-2400

Vulnerability Analysis

This CRLF Injection vulnerability arises from improper neutralization of carriage return (CR, \r) and line feed (LF, \n) characters in user-supplied input. When a Web Admin user interacts with the /setPCBEDesc endpoint, the application fails to properly sanitize the POST request payload. This allows an attacker with administrative privileges to inject CRLF sequences that can manipulate the server's response handling and trigger unintended application behavior, specifically causing user credentials to be reset.

The vulnerability requires the attacker to have authenticated access to the Web Admin interface, which limits the attack surface but still presents significant risk in environments where admin credentials may be compromised or where insider threats exist.

Root Cause

The root cause is insufficient input validation in the /setPCBEDesc endpoint handler. The application does not properly sanitize or reject CRLF sequences (\r\n) within the POST request payload before processing. This allows an attacker to inject additional HTTP headers or manipulate the response structure, leading to the credential reset behavior. Proper encoding or rejection of CRLF characters in user input would prevent this vulnerability.

Attack Vector

The attack is network-based and requires low-privilege authenticated access to the Web Admin interface. An attacker with valid administrative credentials can craft a malicious POST request to the /setPCBEDesc endpoint containing CRLF sequences. These sequences are interpreted by the server, causing unintended modifications to application state that result in user credential resets.

The vulnerability is exploited by injecting CRLF sequences (%0d%0a or \r\n) into the POST /setPCBEDesc request payload. When the server processes this malformed input without proper sanitization, the injected sequences can manipulate the application's internal logic, triggering credential reset functionality. For detailed technical information, refer to the Schneider Electric Security Notice.

Detection Methods for CVE-2026-2400

Indicators of Compromise

  • Unusual or unexpected POST requests to the /setPCBEDesc endpoint containing encoded CRLF sequences (%0d%0a, %0D%0A)
  • Unexpected user credential resets or authentication failures reported by legitimate users
  • Web server logs showing malformed requests with carriage return or line feed characters in POST bodies
  • Multiple credential reset events occurring in short time periods without user initiation

Detection Strategies

  • Implement web application firewall (WAF) rules to detect and block requests containing CRLF sequences in POST payloads
  • Monitor HTTP traffic for encoded newline characters (%0d, %0a, %0D, %0A) in requests to administrative endpoints
  • Deploy intrusion detection signatures to identify CRLF injection attempts targeting the /setPCBEDesc endpoint
  • Review authentication logs for anomalous credential reset patterns

Monitoring Recommendations

  • Enable detailed logging for the web administration interface, capturing full request payloads
  • Set up alerts for credential reset events that occur outside of normal administrative procedures
  • Monitor for failed authentication attempts following credential reset activities
  • Implement anomaly detection for unusual administrative API usage patterns

How to Mitigate CVE-2026-2400

Immediate Actions Required

  • Review and apply security patches from Schneider Electric as referenced in the official security advisory
  • Restrict network access to the Web Admin interface to trusted management networks only
  • Audit Web Admin user accounts and enforce strong authentication mechanisms
  • Implement WAF rules to filter CRLF sequences from incoming requests

Patch Information

Schneider Electric has released a security advisory addressing this vulnerability. Organizations should review the Schneider Electric Security Notice (SEVD-2026-104-01) for detailed patch information and remediation guidance. Apply vendor-provided updates as soon as they become available for your specific product version.

Workarounds

  • Implement network segmentation to restrict access to the Web Admin interface from untrusted networks
  • Deploy a reverse proxy or WAF configured to strip or block CRLF characters from request payloads
  • Limit administrative access to essential personnel only and implement additional authentication factors
  • Monitor administrative activities and implement session timeout policies to reduce exposure window
bash
# Example WAF rule to block CRLF sequences (ModSecurity format)
SecRule REQUEST_BODY "@rx (%0[dD]|%0[aA]|\r|\n)" \
    "id:100001,phase:2,deny,status:403,msg:'CRLF Injection Attempt Detected'"

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechN/A

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability0.05%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:N/VI:N/VA:L/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-93
  • Technical References
  • Schneider Electric Security Notice
  • Latest CVEs
  • CVE-2025-52479: HTTP.jl & URIs.jl CRLF Injection Flaw

  • CVE-2026-31740: Linux Kernel Race Condition Vulnerability

  • CVE-2026-31743: Linux Kernel Buffer Overflow Vulnerability

  • CVE-2026-31744: Linux Kernel NULL Pointer 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