Overview
This report covers the critical vulnerability CVE-2025-55483 that affects Tenda AC6 V15.03.06.23_multi. This vulnerability is a buffer overflow error occurring in the function formSetMacFilterCfg via the parameters macFilterType and deviceList. Due to the severity of the vulnerability, it has the potential to compromise systems or result in significant data leakage.
Vulnerability Summary
CVE ID: CVE-2025-55483
Severity: High (CVSS: 7.5)
Attack Vector: Network
Privileges Required: None
User Interaction: None
Impact: Potential System Compromise, Data Leakage
Affected Products
Escape the Surveillance Era
Most apps won’t tell you the truth.
They’re part of the problem.
Phone numbers. Emails. Profiles. Logs.
It’s all fuel for surveillance.
Ameeba Chat gives you a way out.
- • No phone number
- • No email
- • No personal info
- • Anonymous aliases
- • End-to-end encrypted
Chat without a trace.
Product | Affected Versions
Tenda AC6 | V15.03.06.23_multi
How the Exploit Works
The vulnerability is based upon a buffer overflow error. The software does not adequately validate input given in the macFilterType and deviceList parameters. If an attacker sends an unusually large amount of data to these parameters, they can overflow the buffer, causing the system to crash or, in some cases, allowing the attacker to execute arbitrary code or gain unauthorized access.
Conceptual Example Code
Here is a conceptual example of how the vulnerability might be exploited in a HTTP POST request:
POST /formSetMacFilterCfg HTTP/1.1
Host: target.example.com
Content-Type: application/json
{
"macFilterType": "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA...",
"deviceList": "BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB..."
}
In this example, “A” and “B” represent an overflow of data that exceeds the buffer’s capacity. The attacker floods the parameters with excessive data, causing the system to crash or potentially allowing the execution of arbitrary code.

