CVE-2026-56224
Deferred Deferred - Pending Action

Authentication Bypass via URL Tokens in Capgo Console

Vulnerability report for CVE-2026-56224, including description, CVSS score, EPSS score, affected products, exploitability, helpful resources, and attack-flow context.

Publication date: 2026-06-30

Last updated on: 2026-07-01

Assigner: VulnCheck

Description

Capgo console.capgo.app/login before 12.128.2 accepts access_token and refresh_token in URL query parameters, automatically authenticating users without confirmation. Attackers can craft malicious links to force victims into attacker-controlled sessions, exposing tokens in browser history and logs.

CVSS Scores

EPSS Scores

Probability:
Percentile:

Meta Information

Published
2026-06-30
Last Modified
2026-07-01
Generated
2026-07-21
AI Q&A
2026-07-01
EPSS Evaluated
2026-07-19
NVD
EUVD

Affected Vendors & Products

Showing 1 associated CPE
Vendor Product Version / Range
capgo capgo to 12.128.2 (exc)

Helpful Resources

Exploitability

CWE
CWE Icon
KEV
KEV Icon
CWE ID Description
CWE-384 Authenticating a user, or otherwise establishing a new user session, without invalidating any existing session identifier gives an attacker the opportunity to steal authenticated sessions.

Attack-Flow Graph

AI Quick Actions

Instant insights powered by AI
Executive Summary

The vulnerability exists in Capgo console.capgo.app/login versions before 12.128.2, where the application accepts access_token and refresh_token in URL query parameters and automatically authenticates users without any confirmation.

This allows attackers to craft malicious links that force victims into attacker-controlled sessions, exposing sensitive tokens in browser history and logs.

Detection Guidance

This vulnerability can be detected by monitoring network traffic and logs for URLs containing access_token and refresh_token parameters in query strings directed to console.capgo.app/login.

You can use commands to search for such URLs in web server logs or network captures. For example, using grep on log files:

  • grep -i 'access_token=' /path/to/access.log
  • grep -i 'refresh_token=' /path/to/access.log

Additionally, network packet captures can be filtered with tools like tcpdump or Wireshark to detect HTTP requests containing these tokens in the URL query parameters.

  • tcpdump -A -s 0 'tcp port 80 and (((ip[2:2] - ((ip[0]&0xf)<<2)) - ((tcp[12]&0xf0)>>2)) != 0)' | grep 'access_token='
Impact Analysis

This vulnerability can lead to unauthorized access to user accounts because attackers can trick users into clicking malicious links that automatically authenticate them into attacker-controlled sessions.

Additionally, sensitive tokens are exposed in browser history and logs, increasing the risk of token theft and session hijacking.

Compliance Impact

This vulnerability exposes sensitive authentication tokens in browser history and logs, which can lead to unauthorized access and session hijacking.

Such exposure of sensitive information can conflict with compliance requirements in standards and regulations like GDPR and HIPAA, which mandate protection of personal and sensitive data to prevent unauthorized access and data breaches.

By allowing attackers to force victims into attacker-controlled sessions and exposing tokens in logs, the vulnerability increases the risk of data compromise, potentially violating data protection and privacy obligations under these regulations.

Mitigation Strategies

The immediate mitigation step is to upgrade Capgo to version 12.128.2 or later, where this vulnerability has been patched.

Until the upgrade can be applied, avoid using or sharing URLs that contain access_token and refresh_token in query parameters.

Additionally, configure monitoring to detect and block requests that include these tokens in URL query strings.

The recommended long-term fix is to ensure the application does not accept authentication tokens via URL query parameters and requires explicit user confirmation before setting sessions.

Chat Assistant

Ask questions about this CVE
Hi! I’m here to help you understand CVE-2026-56224. Ask me anything about the vulnerability, its impact, or mitigation strategies.
0/70

EPSS Chart