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
    • 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-2025-70085

CVE-2025-70085: OpenSatKit Buffer Overflow Vulnerability

CVE-2025-70085 is a buffer overflow flaw in OpenSatKit 2.2.1 caused by unsafe sprintf calls in file.c. Attackers can trigger stack overflow via long filenames. This article covers technical details, impact, and mitigations.

Published: February 13, 2026

CVE-2025-70085 Overview

A critical stack buffer overflow vulnerability has been discovered in OpenSatKit 2.2.1, affecting the File Manager application's core file handling functions. The vulnerability exists in the EventErrStr buffer within file.c, where unsafe sprintf calls format filename strings without proper length validation, potentially allowing attackers to execute arbitrary code through specially crafted filenames.

Critical Impact

This stack buffer overflow vulnerability enables remote attackers to potentially achieve arbitrary code execution by exploiting unsafe string formatting operations in satellite ground station software, posing significant risks to space mission operations.

Affected Products

  • OpenSatKit version 2.2.1
  • File Manager (filemgr) application in OpenSatKit cFS apps
  • Systems using FILE_ConcatenateCmd() and ConcatenateFiles() functions

Discovery Timeline

  • 2026-02-11 - CVE CVE-2025-70085 published to NVD
  • 2026-02-12 - Last updated in NVD database

Technical Details for CVE-2025-70085

Vulnerability Analysis

The vulnerability stems from a classic CWE-121 (Stack-based Buffer Overflow) condition in the OpenSatKit File Manager application. The EventErrStr buffer is allocated with a fixed size of 256 bytes on the stack. When the application processes file operations, it uses sprintf to format filenames including Source1Filename and the return value from FileUtil_FileStateStr() into this buffer.

The critical flaw is the absence of any length validation before the string formatting operation. Given that OS_MAX_PATH_LEN is commonly defined as 64-256 bytes, two filenames combined with constant formatting text can easily exceed the 256-byte buffer capacity. This overflow corrupts adjacent stack memory, potentially overwriting return addresses and enabling control flow hijacking.

Root Cause

The root cause is the use of unbounded sprintf calls without implementing proper safety mechanisms. The code lacks:

  1. Input validation on filename lengths before formatting
  2. Use of bounded format specifiers such as %.*s to limit string lengths
  3. Use of safer alternatives like snprintf with explicit size limits

These unsafe patterns are replicated across multiple functions in file.c, including FILE_ConcatenateCmd() and ConcatenateFiles(), creating multiple exploitation entry points within the same codebase.

Attack Vector

The vulnerability is exploitable over the network without requiring authentication or user interaction. An attacker can trigger the overflow by:

  1. Sending commands to the OpenSatKit File Manager with specially crafted, oversized filenames
  2. Targeting the file concatenation operations where multiple filenames are formatted together
  3. Exploiting the lack of input sanitization to inject payloads that overflow the stack buffer

The vulnerable code pattern involves formatting two path strings into a fixed-size buffer. When the combined length of Source1Filename, the result of FileUtil_FileStateStr(), and the constant text portions exceeds 256 bytes, the stack buffer overflows. An attacker controlling the filename inputs can craft values that precisely overflow the buffer to overwrite the function's return address, redirecting execution to attacker-controlled shellcode.

For detailed technical analysis, refer to the OpenSatKit File Manager Source Code and the security researcher's analysis.

Detection Methods for CVE-2025-70085

Indicators of Compromise

  • Abnormally long filename strings in File Manager command inputs exceeding typical path lengths
  • Unexpected crashes or segmentation faults in the filemgr application
  • Anomalous network traffic containing oversized path strings targeting OpenSatKit command interfaces
  • Evidence of stack smashing detected by system protection mechanisms (if enabled)

Detection Strategies

  • Implement network monitoring for command packets containing filenames approaching or exceeding OS_MAX_PATH_LEN boundaries
  • Deploy static analysis tools to identify additional unbounded sprintf calls in custom OpenSatKit deployments
  • Configure intrusion detection systems to alert on malformed or oversized file operation commands
  • Monitor system logs for File Manager application crashes or abnormal terminations

Monitoring Recommendations

  • Enable stack canary protections and monitor for stack smashing detection alerts
  • Implement command logging for all File Manager operations to establish baseline behavior
  • Deploy memory corruption detection tools such as AddressSanitizer in development and testing environments
  • Monitor ground station communication channels for anomalous command patterns

How to Mitigate CVE-2025-70085

Immediate Actions Required

  • Review and audit all OpenSatKit 2.2.1 deployments for exposure to untrusted network inputs
  • Implement network segmentation to restrict access to OpenSatKit command interfaces
  • Apply input validation at the application boundary to reject filenames exceeding safe length thresholds
  • Consider deploying application-level firewalls to filter malicious command inputs

Patch Information

No official vendor patch has been identified at this time. Organizations should monitor the OpenSatKit GitHub Repository for security updates and patch releases. The vulnerable code is located in the File Manager application at cfs/apps/filemgr/fsw/src/file.c.

To remediate the vulnerability, replace all unbounded sprintf calls with snprintf and implement proper length checking on all filename inputs before formatting operations. All instances of the vulnerable pattern in FILE_ConcatenateCmd(), ConcatenateFiles(), and related functions require modification.

Workarounds

  • Implement strict input validation to reject filenames exceeding 100 bytes before they reach vulnerable functions
  • Deploy Address Space Layout Randomization (ASLR) and stack canaries to increase exploitation difficulty
  • Restrict network access to OpenSatKit command interfaces using firewall rules
  • Consider recompiling OpenSatKit with compiler hardening flags such as -fstack-protector-strong and -D_FORTIFY_SOURCE=2
bash
# Example: Compile with stack protection enabled
gcc -fstack-protector-strong -D_FORTIFY_SOURCE=2 -o file.o -c file.c

# Example: Network isolation using iptables to restrict command interface access
iptables -A INPUT -p tcp --dport <COMMAND_PORT> -s <TRUSTED_IP_RANGE> -j ACCEPT
iptables -A INPUT -p tcp --dport <COMMAND_PORT> -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/TechOpensatkit

  • 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-121
  • Technical References
  • GitHub Gist Contribution

  • OpenSatKit GitHub Repository

  • OpenSatKit Release v2.2.1

  • OpenSatKit File Manager Source Code
  • Related CVEs
  • CVE-2025-70083: OpenSatKit Buffer Overflow Vulnerability

  • CVE-2025-70084: OpenSatKit Path Traversal 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