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
Share secrets securely
Ameeba is private infrastructure for communication and sensitive work built on encrypted identity instead of exposed corporate identity systems.
Passwords, credentials, confidential files, screenshots, internal discussions, sensitive AI context, and private coordination should not become exposed across ordinary communication platforms.
- • Encrypted identity
- • Private Spaces for organizations and teams
- • End-to-end encrypted chat, calls, files, and notes
- • Sensitive AI work and protected collaboration
- • Built for information that cannot leak
Our mission is to secure human work alongside AI.
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.
