Overview
The vulnerability CVE-2025-59363 is a critical security flaw found in the One Identity OneLogin system. This flaw affects versions prior to 2025.3.0, making it possible for potential attackers to potentially gain unauthorized access to OIDC client secrets. This can lead to system compromise and data leakage, posing a significant threat to the privacy and integrity of sensitive information.
Vulnerability Summary
CVE ID: CVE-2025-59363
Severity: High (7.7)
Attack Vector: Network
Privileges Required: Low
User Interaction: None
Impact: Potential system compromise and 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
One Identity OneLogin | Before 2025.3.0
How the Exploit Works
The vulnerability is due to the inappropriate handling of OIDC client secrets by the GET Apps API v2 in One Identity OneLogin. Instead of returning this secret only when an App is first created, the system returns it with every request. This exposes the OIDC client secret to unauthorized viewers, potentially allowing them to gain unauthorized access to the system.
Conceptual Example Code
Below is a conceptual example of a simple HTTP GET request to exploit this vulnerability:
GET /api/v2/apps HTTP/1.1
Host: target.onelogin.com
Authorization: Bearer <access_token>
The response in a vulnerable system will include the OIDC client secret:
HTTP/1.1 200 OK
Content-Type: application/json
{
"apps": [
{
"id": 12345,
"name": "Vulnerable app",
"oidc_client_secret": "exposed_secret"
}
]
}
Mitigation Guidance
To mitigate this vulnerability, affected users are advised to apply the latest patch provided by the vendor. In the absence of a patch, using a Web Application Firewall (WAF) or an Intrusion Detection System (IDS) can serve as temporary mitigation. Nevertheless, applying the vendor’s patch is the recommended and most thorough solution.
