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-2020-28895

CVE-2020-28895: VxWorks Buffer Overflow Vulnerability

CVE-2020-28895 is a buffer overflow flaw in Wind River VxWorks caused by memory allocator overflow in calloc() calculations. This leads to memory corruption risks. This post covers technical details, impact, and mitigation.

Published: March 4, 2026

CVE-2020-28895 Overview

In Wind River VxWorks, the memory allocator has a possible overflow in calculating the memory block's size to be allocated by calloc(). As a result, the actual memory allocated is smaller than the buffer size specified by the arguments, leading to memory corruption. This integer overflow vulnerability affects the VxWorks real-time operating system (RTOS), which is widely deployed in embedded systems, industrial control systems, aerospace, and telecommunications infrastructure.

Critical Impact

Integer overflow in the calloc() function can result in undersized memory allocations, enabling attackers to trigger memory corruption that may lead to arbitrary code execution, denial of service, or information disclosure on affected VxWorks-based systems.

Affected Products

  • Wind River VxWorks (versions prior to security patches)
  • Wind River VxWorks 6.9.4.12
  • Oracle Communications EAGLE (versions 46.6.0 to 46.7.0 and 46.8.0 to 46.9.2)

Discovery Timeline

  • 2021-02-03 - CVE CVE-2020-28895 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2020-28895

Vulnerability Analysis

The vulnerability resides in the VxWorks memory allocator, specifically within the calloc() function implementation. The calloc() function is designed to allocate memory for an array of elements, taking two parameters: the number of elements and the size of each element. It multiplies these values to determine the total memory required.

When the multiplication of these two parameters exceeds the maximum representable value for the data type used in the calculation, an integer overflow occurs. This causes the result to wrap around to a smaller value than intended. Consequently, the memory allocator provisions a buffer significantly smaller than what the calling code expects.

When the application subsequently writes data to this undersized buffer assuming the originally requested size, it writes beyond the allocated memory boundaries. This memory corruption can overwrite adjacent heap metadata or other critical data structures.

Root Cause

The root cause is an integer overflow vulnerability (CWE-190) in the size calculation performed by the calloc() function. The implementation fails to properly validate that the multiplication of the element count and element size does not exceed the maximum value representable by the size type. Without this bounds check, attackers can craft inputs that trigger the overflow condition, resulting in a much smaller allocation than intended by the caller.

Attack Vector

The vulnerability can be exploited remotely over a network connection. An attacker who can influence the parameters passed to calloc() through network-accessible interfaces can trigger the integer overflow condition. The attack requires no authentication or user interaction.

The exploitation scenario involves:

  1. Identifying network services on VxWorks-based devices that process attacker-controlled data
  2. Crafting malicious input that causes calloc() to be called with large values for both the element count and size parameters
  3. The multiplication of these values overflows, resulting in a small allocation
  4. Subsequent operations write beyond the undersized buffer, corrupting heap memory
  5. The attacker leverages the memory corruption to achieve code execution or denial of service

Given VxWorks' prevalence in critical infrastructure such as industrial control systems, medical devices, and telecommunications equipment, successful exploitation could have significant real-world impact.

Detection Methods for CVE-2020-28895

Indicators of Compromise

  • Unexpected system crashes or reboots on VxWorks-based devices, particularly during network operations
  • Memory corruption errors or heap corruption detected in system logs
  • Abnormal network traffic patterns targeting VxWorks services with unusually large parameter values
  • Process termination or undefined behavior following memory allocation operations

Detection Strategies

  • Monitor network traffic for anomalous requests containing large numeric values that could trigger integer overflows
  • Implement integrity monitoring on VxWorks-based embedded systems to detect unexpected modifications
  • Deploy network intrusion detection signatures to identify exploitation attempts targeting VxWorks devices
  • Review application logs for memory allocation failures or corruption indicators

Monitoring Recommendations

  • Establish baseline behavior for VxWorks-based devices and alert on deviations
  • Monitor for unusual restart patterns or crash loops on affected embedded systems
  • Implement network segmentation to isolate VxWorks devices and enable focused monitoring
  • Configure centralized logging for VxWorks devices where possible to correlate potential attack indicators

How to Mitigate CVE-2020-28895

Immediate Actions Required

  • Apply vendor-provided patches from Wind River immediately for all affected VxWorks deployments
  • For Oracle Communications EAGLE deployments, apply the patches referenced in the April 2022 Critical Patch Update
  • Isolate vulnerable VxWorks-based systems behind network firewalls to reduce attack surface
  • Implement network access controls to restrict which hosts can communicate with VxWorks devices
  • Conduct inventory assessment to identify all VxWorks-based systems in your environment

Patch Information

Wind River has released security patches to address this vulnerability. Detailed patch information is available through the Wind River CVE Advisory and the Wind River Defect Report V7LIBC-1327. Organizations using Oracle Communications EAGLE should reference the Oracle Critical Patch Update April 2022 for applicable patches.

Workarounds

  • Implement network segmentation to isolate VxWorks devices from untrusted networks
  • Deploy application-layer firewalls or proxies to filter requests with suspiciously large parameter values
  • Disable or restrict access to unnecessary network services on affected VxWorks systems
  • Where possible, implement input validation at the application layer before calling memory allocation functions
bash
# Network segmentation example - restrict access to VxWorks devices
# Example iptables rules to limit access to VxWorks device subnet
iptables -A FORWARD -d 10.0.100.0/24 -s 10.0.1.0/24 -j ACCEPT
iptables -A FORWARD -d 10.0.100.0/24 -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/TechWindriver Vxworks

  • SeverityHIGH

  • CVSS Score7.3

  • EPSS Probability0.27%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:L
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-190
  • Technical References
  • Wind River Defect Report
  • Vendor Resources
  • Wind River CVE Advisory

  • Oracle Critical Patch Update
  • Related CVEs
  • CVE-2022-23937: Wind River VxWorks Buffer Overflow Flaw

  • CVE-2021-29998: VxWorks DHCP Buffer Overflow Vulnerability

  • CVE-2020-35198: Wind River VxWorks Buffer Overflow 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