Overview
Crafty Controller, a widely used server management tool, has been found to contain an input neutralization vulnerability. This flaw, identified as CVE-2025-5990, could potentially allow authenticated remote attackers to perform stored Cross-Site Scripting (XSS) attacks, leading to system compromise or data leakage. The vulnerability underscores the importance of input validation and sanitization in maintaining secure software environments.
Vulnerability Summary
CVE ID: CVE-2025-5990
Severity: High (7.6 CVSS Score)
Attack Vector: Network
Privileges Required: Low
User Interaction: None
Impact: Potential system compromise or data leakage due to stored XSS attacks
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
Crafty Controller | All versions up to latest
How the Exploit Works
The vulnerability lies in the Server Name and API Key form components of Crafty Controller. An attacker, who has authenticated access, can exploit the flaw by inserting malicious scripts in the input forms. Since the application does not properly neutralize user input, the malicious script is stored and then executed in the user’s browser context when the stored data is accessed or displayed. This could lead to unauthorized access and control over the system, or data theft.
Conceptual Example Code
Here is a conceptual example of an HTTP request that exploits the vulnerability:
POST /api_key_form HTTP/1.1
Host: target.example.com
Content-Type: application/json
Authorization: Bearer <valid_api_key>
{
"api_key": "<script>malicious_script_here</script>"
}
In this example, the attacker uses a valid API key to authenticate and then sends a POST request with a new API key containing a malicious script. When this new API key is displayed or used, the script is executed, exploiting the vulnerability.
