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-2025-70957

CVE-2025-70957: TON Lite Server DoS Vulnerability

CVE-2025-70957 is a denial of service flaw in TON Lite Server before v2024.09 that allows attackers to inject malicious continuation objects, consuming excessive CPU resources and disrupting service availability.

Published: February 20, 2026

CVE-2025-70957 Overview

A Denial of Service (DoS) vulnerability was discovered in the TON Lite Server before v2024.09. The vulnerability arises from the handling of external arguments passed to locally executed "get methods." An attacker can inject a constructed Continuation object (an internal TVM type) that is normally restricted within the VM. When the TVM executes this malicious continuation, it consumes excessive CPU resources while accruing disproportionately low virtual gas costs. This "free" computation allows an attacker to monopolize the Lite Server's processing power, significantly reducing its throughput and causing a denial of service for legitimate users acting through the gateway.

Critical Impact

Attackers can exhaust server CPU resources through crafted Continuation objects, causing service degradation and denial of service for legitimate TON blockchain users.

Affected Products

  • TON Lite Server versions prior to v2024.09
  • TON Blockchain infrastructure using vulnerable Lite Server instances
  • Gateway services relying on TON Lite Server for blockchain access

Discovery Timeline

  • 2026-02-13 - CVE CVE-2025-70957 published to NVD
  • 2026-02-18 - Last updated in NVD database

Technical Details for CVE-2025-70957

Vulnerability Analysis

This vulnerability (CWE-674: Uncontrolled Recursion) exists in the TON Virtual Machine's (TVM) handling of external arguments passed to locally executed "get methods." The core issue stems from improper validation of input types, allowing attackers to inject Continuation objects that are normally restricted internal TVM types.

When the TVM processes these malicious Continuation objects, a critical disconnect occurs between actual CPU consumption and the virtual gas metering system. The injected continuations trigger computation-intensive operations that bypass the gas cost accounting mechanism, essentially allowing "free" computation from the attacker's perspective while consuming real server resources.

Root Cause

The root cause is insufficient input validation and type checking when processing external arguments in the Lite Server's get method handler. The TVM fails to properly restrict or sanitize Continuation objects from external sources, trusting that these internal types would only originate from legitimate internal VM operations. This trust assumption creates an exploitable gap where malicious actors can craft and inject these restricted objects through external interfaces.

Attack Vector

The attack is conducted remotely over the network without requiring authentication or user interaction. An attacker crafts a specially constructed Continuation object and passes it as an argument to a locally executed get method on the TON Lite Server. When the server processes this request:

  1. The malicious Continuation object is accepted without proper type validation
  2. The TVM begins executing the continuation, triggering resource-intensive operations
  3. The gas metering system fails to properly account for the actual computational cost
  4. CPU resources are consumed disproportionately to the reported gas usage
  5. Repeated exploitation monopolizes server processing capacity, denying service to legitimate users

The vulnerability allows attackers to amplify their impact by consuming server resources at minimal virtual cost, making it an efficient denial of service attack vector. Technical details and proof of concept information can be found in the GitHub Gist and WeChat Security Article.

Detection Methods for CVE-2025-70957

Indicators of Compromise

  • Unusual CPU utilization spikes on TON Lite Server instances without corresponding increase in legitimate traffic
  • Discrepancy between reported virtual gas consumption and actual server resource usage
  • Repeated requests to get methods with complex or unusual argument structures
  • Service degradation or timeout errors reported by legitimate gateway users

Detection Strategies

  • Monitor CPU utilization on Lite Server instances and alert on sustained high usage patterns
  • Implement logging for get method invocations to track argument types and request patterns
  • Correlate virtual gas consumption metrics with actual CPU time to identify exploitation attempts
  • Deploy network monitoring to detect high-frequency requests targeting Lite Server endpoints

Monitoring Recommendations

  • Establish baseline metrics for normal Lite Server CPU and memory consumption
  • Configure alerting thresholds for CPU usage anomalies that exceed normal operational patterns
  • Monitor request rates and latency metrics to detect service degradation early
  • Implement real-time analysis of TVM execution patterns to identify abnormal continuation processing

How to Mitigate CVE-2025-70957

Immediate Actions Required

  • Upgrade TON Lite Server to version v2024.09 or later immediately
  • Implement rate limiting on get method endpoints to reduce exploitation impact
  • Monitor server resources closely for signs of active exploitation
  • Consider implementing additional input validation at the gateway layer

Patch Information

The TON blockchain team has addressed this vulnerability in version v2024.09. The fix implements proper validation and restriction of Continuation objects from external sources. The specific commit addressing this issue is available in the GitHub Commit Details. Organizations should prioritize upgrading to the patched version as the primary remediation strategy.

Workarounds

  • Implement strict rate limiting on Lite Server endpoints to reduce the impact of exploitation attempts
  • Deploy a reverse proxy or WAF to filter and validate incoming requests before they reach the Lite Server
  • Consider running multiple Lite Server instances behind a load balancer to distribute potential attack load
  • Implement resource limits (cgroups, containers) to prevent a single Lite Server from consuming all available CPU
bash
# Example rate limiting configuration for nginx proxy
limit_req_zone $binary_remote_addr zone=liteserver:10m rate=10r/s;

location /liteserver {
    limit_req zone=liteserver burst=20 nodelay;
    proxy_pass http://ton-lite-server:port;
}

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechTon Lite Server

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.05%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-674
  • Technical References
  • GitHub Gist Code Snippet

  • GitHub Commit Details

  • WeChat Security Article
  • Latest CVEs
  • CVE-2025-52793: Esselink.nu Settings CSRF Vulnerability

  • CVE-2025-52772: Virtual Moderator CSRF Vulnerability

  • CVE-2025-48279: WC MyParcel Belgium XSS Vulnerability

  • CVE-2025-39381: KiotViet Sync CSRF 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