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

CVE-2026-1949: Delta Electronics AS320T Buffer Overflow

CVE-2026-1949 is a buffer overflow vulnerability in Delta Electronics AS320T caused by incorrect buffer size calculation in the web service. This article covers the technical details, affected systems, and mitigation.

Published: April 30, 2026

CVE-2026-1949 Overview

Delta Electronics AS320T contains a critical vulnerability involving incorrect calculation of the buffer size on the stack in the GET/PUT request handler of the web service. This improper buffer size calculation (CWE-131) can lead to memory corruption when processing specially crafted HTTP requests, potentially allowing remote attackers to execute arbitrary code or cause denial of service conditions on affected devices.

Critical Impact

This vulnerability allows unauthenticated remote attackers to exploit the web service's request handler through network-accessible endpoints, potentially leading to complete system compromise including arbitrary code execution with elevated privileges.

Affected Products

  • Delta Electronics AS320T (all versions prior to security patch)
  • Delta Electronics AS320T Web Service Component
  • Industrial automation systems utilizing the vulnerable AS320T firmware

Discovery Timeline

  • 2026-04-24 - CVE CVE-2026-1949 published to NVD
  • 2026-04-24 - Last updated in NVD database

Technical Details for CVE-2026-1949

Vulnerability Analysis

The vulnerability exists in the web service component of the Delta Electronics AS320T device, specifically within the GET/PUT request handler functionality. The core issue stems from an incorrect calculation of the buffer size allocated on the stack when processing incoming HTTP requests.

When the web service receives GET or PUT requests, it allocates a stack-based buffer to store request data. Due to faulty size calculations, the allocated buffer may be smaller than the actual data being written to it. This creates a classic stack buffer overflow condition where an attacker can overflow the undersized buffer with malicious input, potentially overwriting adjacent stack memory including return addresses and saved registers.

The vulnerability is particularly severe because it requires no authentication and can be exploited remotely over the network. Successful exploitation could allow an attacker to gain complete control over the affected industrial device, disrupt operations, or use it as a pivot point for further network intrusion.

Root Cause

The root cause is CWE-131: Incorrect Calculation of Buffer Size. The web service fails to properly calculate the required buffer size before allocating memory on the stack. This miscalculation results in an insufficient buffer allocation that cannot safely accommodate the incoming request data, leading to a stack-based buffer overflow condition when oversized input is processed.

Attack Vector

The attack vector is network-based, requiring no authentication or user interaction. An attacker can craft malicious GET or PUT HTTP requests with specially constructed payloads designed to overflow the undersized stack buffer. By carefully controlling the overflow data, an attacker can overwrite the return address on the stack to redirect program execution to attacker-controlled code, achieving remote code execution on the target device.

The vulnerability manifests in the GET/PUT request handler of the web service where buffer size calculations are performed incorrectly before stack allocation. Technical details and exploitation mechanics are available in the Delta Security Advisory.

Detection Methods for CVE-2026-1949

Indicators of Compromise

  • Unusual or malformed HTTP GET/PUT requests to the AS320T web service with abnormally large payloads
  • Unexpected crashes or restarts of the AS320T web service component
  • Memory corruption indicators or segmentation faults in device logs
  • Anomalous network traffic patterns targeting the device's web interface

Detection Strategies

  • Deploy network intrusion detection systems (IDS) with signatures for oversized HTTP request payloads targeting industrial control devices
  • Monitor HTTP traffic to AS320T devices for requests with suspicious payload sizes that exceed normal operational parameters
  • Implement application-level logging to capture request sizes and identify buffer overflow attempts
  • Use behavioral analysis to detect unusual patterns of GET/PUT requests to the web service

Monitoring Recommendations

  • Continuously monitor network traffic to and from Delta Electronics AS320T devices for anomalous activity
  • Implement alerting for HTTP requests that exceed expected payload thresholds
  • Review device logs regularly for signs of service instability or unexpected restarts
  • Establish baseline network behavior for industrial devices to identify deviations that may indicate exploitation attempts

How to Mitigate CVE-2026-1949

Immediate Actions Required

  • Restrict network access to the AS320T web service to trusted IP addresses and networks only
  • Implement network segmentation to isolate affected industrial devices from untrusted network segments
  • Deploy web application firewall (WAF) rules to filter oversized or malformed HTTP requests
  • Review and audit access controls for all Delta Electronics AS320T devices in your environment

Patch Information

Delta Electronics has released a security advisory addressing this vulnerability along with related issues (CVE-2026-1950, CVE-2026-1951, CVE-2026-1952). Organizations should consult the Delta Security Advisory PCSA-2026-00006 for detailed patch information and firmware update instructions. Apply the latest security updates from Delta Electronics as soon as they become available.

Workarounds

  • Disable the web service on the AS320T device if it is not required for operational purposes
  • Implement strict firewall rules to limit access to the web service port from only authorized management workstations
  • Use a VPN or other secure tunnel for remote management access instead of direct network exposure
  • Consider deploying an application-layer proxy that can inspect and sanitize HTTP traffic before it reaches the device
bash
# Example firewall configuration to restrict access to AS320T web service
# Restrict web service access to trusted management network only
iptables -A INPUT -p tcp --dport 80 -s 10.10.10.0/24 -j ACCEPT
iptables -A INPUT -p tcp --dport 80 -j DROP
iptables -A INPUT -p tcp --dport 443 -s 10.10.10.0/24 -j ACCEPT
iptables -A INPUT -p tcp --dport 443 -j DROP

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

  • Vulnerability Details
  • TypeBuffer Overflow

  • Vendor/TechDelta Electronics

  • SeverityCRITICAL

  • CVSS Score9.8

  • EPSS Probability0.02%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-131
  • Technical References
  • Delta Security Advisory CVE-2026-1949 to 1952
  • Related CVEs
  • CVE-2026-1951: Delta Electronics AS320T Buffer Overflow

  • CVE-2026-1952: Delta Electronics AS320T DoS Vulnerability

  • CVE-2026-3094: Delta CNCSoft-G2 RCE Vulnerability

  • CVE-2025-3495: Delta Electronics COMMGR RCE 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