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-2022-39377

CVE-2022-39377: Sysstat Project Sysstat RCE Vulnerability

CVE-2022-39377 is a remote code execution flaw in Sysstat affecting 32-bit Linux systems. A size_t overflow in allocate_structures allows attackers to exploit buffer allocation and execute code remotely.

Published: February 18, 2026

CVE-2022-39377 Overview

CVE-2022-39377 is an integer overflow vulnerability affecting sysstat, a widely-used set of system performance monitoring tools for the Linux operating system. On 32-bit systems running sysstat versions 9.1.16 through 12.7.0, the allocate_structures function in sa_common.c contains a size_t overflow that can lead to Remote Code Execution (RCE).

The vulnerability stems from insufficient bounds checking before arithmetic multiplication operations, allowing an attacker to trigger an overflow in the size allocated for the buffer representing system activities. This buffer overflow can then be exploited to execute arbitrary code on the affected system.

Critical Impact

This integer overflow vulnerability in sysstat can allow attackers to achieve Remote Code Execution on vulnerable 32-bit Linux systems, potentially leading to full system compromise.

Affected Products

  • sysstat versions 9.1.16 to 12.7.0
  • Debian Linux 10.0
  • Fedora 35, 36, and 37

Discovery Timeline

  • 2022-11-08 - CVE-2022-39377 published to NVD
  • 2025-11-03 - Last updated in NVD database

Technical Details for CVE-2022-39377

Vulnerability Analysis

The vulnerability resides in the allocate_structures function within sa_common.c. This function is responsible for allocating memory buffers used to store system activity data collected by sysstat utilities. On 32-bit systems, the function performs arithmetic multiplication to calculate the required buffer size without adequate bounds checking.

When processing specially crafted input, an attacker can cause the multiplication operation to overflow, resulting in a much smaller memory allocation than intended. Subsequent operations that write data into this undersized buffer will overflow its boundaries, corrupting adjacent memory regions.

The CWE classifications for this vulnerability include CWE-120 (Buffer Copy without Checking Size of Input) and CWE-131 (Incorrect Calculation of Buffer Size), which accurately describe the root cause and manifestation of this security flaw.

Root Cause

The root cause is an insufficient bounds check in the allocate_structures function before performing arithmetic multiplication to determine buffer sizes. On 32-bit architectures, size_t is typically 32 bits, making it susceptible to overflow when multiplying large values. The function fails to validate that the product of the multiplication will fit within the size_t data type, leading to integer overflow and subsequent buffer overflow conditions.

Attack Vector

The attack requires local access to the system with the ability to provide malicious input to sysstat utilities. An attacker must craft input that causes the size calculation to overflow, resulting in a small memory allocation. The attacker then exploits the subsequent buffer overflow to overwrite critical memory structures, potentially achieving code execution.

The exploitation scenario involves:

  1. Crafting input with values designed to cause integer overflow during buffer size calculation
  2. Triggering the vulnerable code path in allocate_structures
  3. Exploiting the resulting heap buffer overflow to corrupt memory
  4. Gaining control of program execution flow to execute arbitrary code

Due to the local attack vector and the requirement for user interaction, exploitation requires either social engineering to trick a user into processing malicious data or access to a multi-user system where the attacker can target other users' sysstat processes.

Detection Methods for CVE-2022-39377

Indicators of Compromise

  • Unexpected crashes or segmentation faults in sysstat utilities (sar, sadc, iostat)
  • Anomalous memory allocation patterns in sysstat processes on 32-bit systems
  • Unusual process behavior following sysstat utility execution
  • Core dumps generated by sysstat components indicating heap corruption

Detection Strategies

  • Monitor system logs for sysstat process crashes or abnormal terminations
  • Implement file integrity monitoring on sysstat binary files and configuration
  • Use application-level monitoring to detect memory corruption attempts
  • Deploy endpoint detection solutions capable of identifying heap overflow exploitation techniques

Monitoring Recommendations

  • Enable core dump analysis for sysstat processes to identify exploitation attempts
  • Monitor for unusual process spawning or network connections following sysstat execution
  • Implement audit logging for sysstat utility invocations on critical systems
  • Review system logs for patterns indicative of exploitation attempts targeting this vulnerability

How to Mitigate CVE-2022-39377

Immediate Actions Required

  • Upgrade sysstat to version 12.7.1 or later immediately on all affected systems
  • Prioritize 32-bit Linux systems as they are directly vulnerable to this issue
  • Apply distribution-specific security updates from Debian, Fedora, or Gentoo repositories
  • Restrict access to sysstat utilities to trusted users only until patching is complete

Patch Information

The vulnerability has been patched in sysstat version 12.7.1. System administrators should update to this version or apply distribution-specific security patches. Multiple Linux distributions have released security advisories and patches:

  • Debian: Security updates available via Debian LTS Announcement
  • Fedora: Patches available for Fedora 35, 36, and 37 via Fedora Package Announcements
  • Gentoo: Security advisory GLSA 202211-07 provides patch details

For complete technical details, refer to the GitHub Security Advisory.

Workarounds

  • Restrict execution permissions for sysstat utilities to root or trusted administrators only
  • Consider temporarily disabling or removing sysstat on 32-bit systems until patches can be applied
  • Implement strict input validation at the system level for any data processed by sysstat
  • Use containerization or sandboxing to isolate sysstat processes from critical system components
bash
# Check installed sysstat version
sar -V

# Update sysstat on Debian/Ubuntu systems
sudo apt update && sudo apt upgrade sysstat

# Update sysstat on Fedora systems
sudo dnf update sysstat

# Update sysstat on Gentoo systems
sudo emerge --sync && sudo emerge -av app-admin/sysstat

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechSysstat

  • SeverityHIGH

  • CVSS Score7.8

  • EPSS Probability1.29%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityHigh
  • AvailabilityHigh
  • CWE References
  • CWE-120

  • CWE-131
  • Technical References
  • GitHub Security Advisory

  • Debian LTS Announcement

  • Fedora Package Announcement

  • Fedora Package Announcement

  • Fedora Package Announcement

  • Gentoo GLSA 202211-07

  • Debian LTS Announcement
  • Latest CVEs
  • CVE-2025-49454: TinySalt Path Traversal Vulnerability

  • CVE-2025-48261: MultiVendorX Information Disclosure Flaw

  • CVE-2025-32119: CardGate WooCommerce SQL Injection Flaw

  • CVE-2025-26879: s2Member Plugin Reflected 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