Overview
The vulnerability identified as CVE-2025-6073 is a critical flaw in ABB RMC-100 and RMC-100 LITE. It’s a stack-based buffer overflow vulnerability which, when exploited, can potentially lead to system compromise or data leakage. This vulnerability matters due to its high severity score and the potential impact on the affected systems.
Vulnerability Summary
CVE ID: CVE-2025-6073
Severity: High (CVSS: 7.5)
Attack Vector: Network
Privileges Required: Low
User Interaction: None
Impact: System compromise or 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
ABB RMC-100 | 2105457-043 through 2105457-045
ABB RMC-100 LITE | 2106229-015 through 2106229-016
How the Exploit Works
The vulnerability arises when the REST interface is enabled by a user and an attacker gains access to the control network. When user/password broker authentication is enabled, and the CVE-2025-6074 is exploited, the attacker can overflow the buffer for username or password, leading to potential system compromise or data leakage.
Conceptual Example Code
Here is a conceptual example of how the vulnerability might be exploited. This example is an HTTP request that could be used to send a malicious payload to the vulnerable endpoint.
POST /rest_interface/login HTTP/1.1
Host: target.example.com
Content-Type: application/json
{
"username": "validuser",
"password": "A"*5000 //An example of a Buffer overflow attack
}
In this example, the password field is filled with a number of ‘A’ characters exceeding the buffer size, leading to overflow. This can allow the attacker to potentially overwrite data in the memory and execute arbitrary code.
