SEPTEMBER 14, 2026
Live Feed
Back to database
Case File

CVE-2026-58108

LOW · CVSS 1.2 EPSS 0.23% Public Exploit

Source: NVD + CISA KEV + EPSS · Published 2026-08-26 · Last synced 2026-09-14

CyberRota Analysis

AI-Generated

The 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.

GitHub PoC Links

Note: these links are listed for security research and verification purposes only.

CVE
CVE-2026-58108
Severity
LOW
CVSS
1.2
EPSS
0.23%

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.