---
id: CVE-2026-81027
title: one-api gates one of its two channel-pinning paths and not the other
summary: >-
  one-api gates one of its two channel-pinning paths and not the other.
  middleware/auth.go permits a request to name a specific channel either through
  a suffix on the API key or through a URL path parameter. The suffix path is
  reached only…
severity: high
cvss: 8.5
cvssVector: 'CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:L/A:N'
cwe:
  - CWE-862
published: '2026-08-26'
updated: '2026-09-24'
sourceUpdated: '2026-09-24T20:43:32.537'
source: NVD
sourceUrl: 'https://nvd.nist.gov/vuln/detail/CVE-2026-81027'
references:
  - url: 'https://github.com/songquanpeng/one-api'
    label: disclosure@vulncheck.com
  - url: 'https://github.com/songquanpeng/one-api/blob/v0.6.10/middleware/auth.go'
    label: disclosure@vulncheck.com
  - url: 'https://github.com/songquanpeng/one-api/issues/2410'
    label: disclosure@vulncheck.com
  - url: >-
      https://www.vulncheck.com/advisories/one-api-through-0.6.10-missing-authorization-on-url-parameter-channel-pinning
    label: disclosure@vulncheck.com
  - url: 'https://github.com/songquanpeng/one-api/issues/2410'
    label: 134c704f-9b21-4f2e-91b3-4a467353bcc0
tags:
  - nvd
epss: 0.00477
epssPercentile: 0.38496
ingestedAt: '2026-09-24T20:51:40.231Z'
---

## Overview

one-api gates one of its two channel-pinning paths and not the other. middleware/auth.go permits a request to name a specific channel either through a suffix on the API key or through a URL path parameter. The suffix path is reached only after model.IsAdmin succeeds and otherwise rejects the caller, while the path-parameter branch sets the selected-channel value from c.Param("channelid") with no role check at all. The route carrying that parameter sits behind token authentication only, so any account holding a valid API token reaches it. The value flows to the distributor, which loads the channel by integer identifier with no scoping to the caller's user or group, and then sets the outbound Authorization header to that channel's stored key and directs the request at the channel's base URL. A low-privilege account can therefore pin any channel by incrementing an identifier, causing the server to make upstream requests bearing an operator-configured provider key the account was never granted, and bypassing both the per-group restriction and the channel's model allowlist.

## Remediation

Refer to the linked advisories for vendor-supplied fixes and affected version ranges.
