CVE-2025-1979:
ray vulnerable to Insertion of Sensitive Information into Log File
6.4
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.05978%
CWE
Published
3/6/2025
Updated
3/6/2025
KEV Status
No
Technology
Python
Technical Details
CVSS Vector
CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:C/C:H/I:L/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
ray | pip | < 2.43.0 | 2.43.0 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from the logging statement in the main() function of server.py. The commit diff shows the vulnerable line was directly logging the 'args' object, which included redis_password. The patch explicitly redacts redis_password by replacing it with '****' before logging. The GitHub issue (#50266) and CVE description both confirm this line as the exposure point. The function's direct interaction with argument logging and credential handling makes this identification unambiguous.