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

CVE-2025-70252: Tenda AC6 Buffer Overflow Vulnerability

CVE-2025-70252 is a stack overflow vulnerability in Tenda AC6V2.0 router firmware affecting the WifiWpsStart function. Attackers can exploit this flaw to cause denial of service or execute code. This article covers technical details, affected versions, impact analysis, and mitigation strategies.

Published: March 6, 2026

CVE-2025-70252 Overview

A stack overflow vulnerability has been discovered in Tenda AC6V2.0 routers running firmware version V15.03.06.23_multi. The vulnerability exists in the /goform/WifiWpsStart endpoint where user-controllable index and mode parameters are concatenated into a buffer using sprintf without proper size validation. This lack of boundary checking allows attackers to overflow the stack buffer, potentially leading to denial of service conditions or further exploitation.

Critical Impact

Network-accessible stack overflow vulnerability in Tenda router firmware allows remote attackers to trigger denial of service conditions without authentication.

Affected Products

  • Tenda AC6V2.0 Firmware V15.03.06.23_multi
  • Tenda AC6 Router Series (potentially other versions with similar codebase)

Discovery Timeline

  • 2026-03-02 - CVE CVE-2025-70252 published to NVD
  • 2026-03-03 - Last updated in NVD database

Technical Details for CVE-2025-70252

Vulnerability Analysis

This vulnerability is classified as CWE-121 (Stack-based Buffer Overflow). The root issue exists within the /goform/WifiWpsStart handler in the Tenda AC6V2 router firmware. When processing WPS configuration requests, the endpoint accepts index and mode parameters from user input. These parameters are directly concatenated into a stack-allocated buffer named tmp using the sprintf function without any bounds checking.

The absence of size validation before the sprintf operation means that overly long input values can write beyond the allocated buffer boundaries, corrupting adjacent stack memory. This memory corruption can lead to denial of service through application crashes, and in more sophisticated attacks, could potentially allow control flow hijacking.

Root Cause

The vulnerability stems from unsafe use of the sprintf function to combine user-controlled input (index and mode parameters) into a fixed-size stack buffer without verifying that the resulting string will fit within the allocated space. The firmware developers failed to implement input length validation or use safer alternatives such as snprintf with appropriate bounds checking.

Attack Vector

An attacker can exploit this vulnerability remotely over the network by sending specially crafted HTTP POST requests to the /goform/WifiWpsStart endpoint. The attack requires no authentication and can be executed without user interaction. By supplying excessively long values for the index or mode parameters, an attacker can trigger a stack buffer overflow condition.

The exploitation typically involves:

  1. Identifying a vulnerable Tenda AC6V2 router on the network
  2. Crafting an HTTP request to /goform/WifiWpsStart with oversized index or mode parameters
  3. Sending the malicious request to corrupt the stack buffer and crash the service or potentially achieve code execution

Technical details and proof-of-concept information are available in the GitHub security research repository.

Detection Methods for CVE-2025-70252

Indicators of Compromise

  • Unexpected router crashes or reboots, particularly when WPS functionality is being accessed
  • Abnormal HTTP POST requests to /goform/WifiWpsStart with unusually long parameter values
  • Network traffic patterns showing repeated connections to router administration endpoints

Detection Strategies

  • Monitor HTTP traffic to router management interfaces for POST requests to /goform/WifiWpsStart with parameters exceeding normal length thresholds
  • Implement intrusion detection rules to flag requests containing excessively long index or mode parameter values
  • Deploy network monitoring to detect unusual patterns of requests targeting router firmware endpoints

Monitoring Recommendations

  • Enable logging on network firewalls and IDS/IPS systems for traffic directed at router management interfaces
  • Configure alerts for repeated crashes or restarts of Tenda router devices in your environment
  • Review access logs for the router administration interface for suspicious activity patterns

How to Mitigate CVE-2025-70252

Immediate Actions Required

  • Restrict network access to the router administration interface to trusted management networks only
  • Implement firewall rules to block external access to router management ports and web interfaces
  • Monitor for firmware updates from Tenda addressing this vulnerability
  • Consider network segmentation to isolate vulnerable devices from untrusted networks

Patch Information

At the time of publication, users should consult the Tenda security resource page for official firmware updates and security advisories. Organizations should prioritize applying vendor-provided patches as soon as they become available.

Workarounds

  • Disable remote administration features on affected routers if not required for operations
  • Implement access control lists (ACLs) to restrict which IP addresses can reach the router's web interface
  • Use a firewall or security appliance in front of the router to filter and inspect incoming requests to management endpoints
  • Consider replacing vulnerable devices with alternatives if no patch is available and the risk is deemed unacceptable
bash
# Example: Block external access to router management interface using iptables
iptables -A INPUT -p tcp --dport 80 -s 192.168.1.0/24 -j ACCEPT
iptables -A INPUT -p tcp --dport 80 -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/TechTenda

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.04%

  • 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-121
  • Technical References
  • GitHub PoC for CVE-2025-70252

  • Tenda Security Resource
  • Related CVEs
  • CVE-2026-6197: Tenda F456 Buffer Overflow Vulnerability

  • CVE-2026-6200: Tenda F456 Buffer Overflow Vulnerability

  • CVE-2026-6199: Tenda F456 Buffer Overflow Vulnerability

  • CVE-2026-6198: Tenda F456 Buffer Overflow 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