CyberRota Analysis
AI-GeneratedThe vulnerability allows users to delete all personal access tokens in the system due to an improper SQL query that leads to an implicit cross join, failing to restrict deletions to the user's own tokens. This could result in unauthorized access and disruption of user sessions. Organizations using the affected product should prioritize this issue to prevent potential misuse of personal access tokens.
Public Exploit Signal
A public exploit, PoC, GitHub repository or Metasploit reference was detected for this CVE.
Note: these links are listed for security research and verification purposes only.
Original NVD Description
The personal access token removal query selects from PersonalAccessTokenDB but filters on columns of Session, with no join between them. SQLAlchemy resolves that as an implicit cross join, so the filter does not constrain the delete to the calling user's own token in the way the code reads as intending. This way a user can delete all personal access tokens in the system.