SEPTEMBER 17, 2026
Live Feed
Back to database
Case File

CVE-2026-81101

MEDIUM · CVSS 6.5 EPSS 0.32% Public Exploit

Source: NVD + CISA KEV + EPSS · Published 2026-08-27 · Last synced 2026-09-17

CyberRota Analysis

AI-Generated

The vulnerability allows the configure command to accept any endpoint URL, which is then stored alongside the user's access token without proper validation. This can lead to unauthorized access, as an attacker could trick a user into configuring a malicious endpoint, causing their personal access token to be sent with every request. Organizations using affected versions should prioritize patching to mitigate the risk of credential leakage.

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.

CVE
CVE-2026-81101
Severity
MEDIUM
CVSS
6.5
EPSS
0.32%

Original NVD Description

The configure command accepted any endpoint URL and stored it beside the user's access token. ConfigureCommand.execute in src/cli.ts persisted the value given to its endpoint option into the user profile without passing it through createSafeUrl in src/config.ts, the helper that already restricted the environment-variable form of the same setting to the vendor's own hosts over HTTPS. Because the connect path in src/mcp.ts attaches the stored token as a bearer credential on every request to the configured endpoint, a user who was persuaded to run configure with an endpoint of the attacker's choosing sent their personal access token to that destination on each subsequent invocation. Version 0.2.5 applies the same helper to the option.