Kestrel
대시보드로 돌아가기
CVE-2026-54673HIGHMITRENVDGHSA대응게시일: 2026. 06. 30.수정일: 2026. 07. 24.

electron-updater: Cross-origin redirect leaks `PRIVATE-TOKEN` and mixed-case `Authorization` credentials in `builder-util-runtime`

Info-Disclosure

위협 신호 · CVSS · EPSS · KEV

정기 패치· 높은 악용 신호 없음
CVSS
high

이론적 심각도 점수

EPSS
0.2%상위 85.4%

30일 내 악용 확률 예측

KEV
미등재

실측 악용 기록 없음

권장 대응 기한60일 이내CISA SSVC 기준

계획된 패치 주기 내 조치(60일 이내)

외부 노출· KEV 미등재 · 자동화 어려움 · 부분 영향 · 외부 노출

CVSS 벡터 · 메트릭

CVSS 벡터 정보 없음

상세 설명

Summary

In electron-builder's builder-util-runtime package, the HTTP redirect handler (HttpExecutor.prepareRedirectUrlOptions) only stripped a credential header whose key string matched exactly lowercase "authorization". Other credential-bearing headers — most notably PRIVATE-TOKEN (used by GitLab's personal access token flow) and mixed-case Authorization (used by GitLab's Bearer/OAuth flow) — were not stripped and could be forwarded to an attacker-controlled cross-origin redirect destination.


Details

Root cause

HttpExecutor.prepareRedirectUrlOptions (introduced in builder-util-runtime via PR #9211, first released in v26.0.20) performed its cross-origin credential strip with a single case-sensitive property check:

text
1// vulnerable code (electron-builder v26.0.20 – v26.14.x) [via builder-util-runtime <9.7.0]
2if (headers?.authorization) {
3 if (HttpExecutor.isCrossOriginRedirect(originalUrl, parsedRedirectUrl)) {
4 delete headers.authorization // only removes the exact key "authorization"
5 }
6}

JavaScript object property access is case-sensitive. The guard headers?.authorization evaluates to undefined (falsy) when the key is "Authorization", "AUTHORIZATION", or any other casing, so the branch is never entered and no header is deleted for those cases.

Affected updater flows

The clearest reproduced path is the private GitLab updater flow.

packages/electron-updater/src/providers/GitLabProvider.ts sets one of two credential headers depending on the token type:

text
1// GitLabProvider.setAuthHeaderForToken (affected versions)
2if (token.startsWith("Bearer")) {
3 headers.authorization = token // Bearer / OAuth token → key is lowercase
4} else {
5 headers["PRIVATE-TOKEN"] = token // personal access token → key is "PRIVATE-TOKEN"
6}

During a private release update check, the updater requests a release asset through GitLab's direct_asset_url. GitLab commonly redirects asset downloads to an external object-storage origin (e.g., S3, GCS). Because the redirect crosses origins:

  1. A personal access token in PRIVATE-TOKEN is never inspected by the vulnerable strip guard — it is forwarded intact.
  2. A Bearer token set as headers.authorization (lowercase) is stripped correctly.
  3. A Bearer token set as headers.Authorization (capital A) or any other mixed-case variant bypasses the guard and is forwarded intact.

GitLab is the concrete reproduced case; any other provider or custom updater configuration that places credentials in a non-lowercase-authorization header is equally affected.

Before v26.0.20

Versions prior to v26.0.20 did not contain prepareRedirectUrlOptions at all. All credential headers were forwarded unchanged on every redirect, regardless of origin. This represents a broader, pre-existing version of the same class of vulnerability.


Proof of concept (reproduction shape)

  1. Configure the updater with an authenticated GitLab provider, supplying a personal access token (non-Bearer). The provider will set PRIVATE-TOKEN: <token> on requests.
  2. Trigger an update check. The updater fetches release metadata and then requests a release asset URL.
  3. The trusted GitLab origin returns a 3xx cross-origin redirect (e.g., to S3 object storage).
  4. HttpExecutor.prepareRedirectUrlOptions is called. The guard headers?.authorization is falsy (the key is "PRIVATE-TOKEN"). No header is deleted.
  5. The request to the redirect destination is issued with PRIVATE-TOKEN: <token> present in the headers.

Observed result: The personal access token is forwarded to the redirect destination. An attacker who controls or can observe the redirect destination receives the token.


Impact

This is a credential disclosure vulnerability. An automatic update check can leak:

  • GitLab personal access tokens (PRIVATE-TOKEN)
  • Bearer/OAuth tokens sent under a mixed-case Authorization key
  • Any other credential header not named exactly "authorization" in lowercase

Disclosure of a GitLab PAT grants the attacker whatever repository and API permissions the token carries, enabling unauthorized access to private source code, packages, or release artifacts.


Patches

Fixed in electron-builder v26.15.0 [included via v9.7.0 builder-util-runtime] via PR #9834 (commit 22a7532bd).

The incomplete property-access guard was replaced with a separator-agnostic, case-insensitive lookup against a registry of known sensitive header names:

text
1// fixed code (v9.7.0+)
2const normalizeName = (name: string): string =>
3 name.toLowerCase().replace(/[-_]/g, "")
4
5const SENSITIVE_REDIRECT_HEADERS = new Set([
6 "authorization", "proxyauthorization", "privatetoken",
7 "xapikey", "xauthtoken", "xaccesstoken", "xgitlabtoken",
8 "cookie", "xcsrftoken",
9])
10
11// In prepareRedirectUrlOptions, on cross-origin redirect:
12for (const key of Object.keys(headers)) {
13 if (SENSITIVE_REDIRECT_HEADERS.has(normalizeName(key))) {
14 delete (headers as Record<string, unknown>)[key]
15 }
16}

normalizeName converts to lowercase and strips - and _ separators, so PRIVATE-TOKEN, Private-Token, Authorization, AUTHORIZATION, X-Api-Key, etc. are all matched. The fix also exports addSensitiveRedirectHeader() to allow custom publishers to register additional headers.

Upgrade path: Update builder-util-runtime to >= 9.7.0.


Workarounds

There is no configuration-level workaround that prevents header forwarding in affected versions. The only mitigation short of upgrading is to avoid authenticated GitLab updater flows on versions < 9.7.0.

If operating in a network environment where you control all possible redirect destinations, you may be able to prevent the token from reaching an attacker-controlled host through network-layer controls, but this is not a reliable mitigation.

AI 심층 분석

공격 시나리오 · 재현 가능한 PoC 페이로드 · 즉시 적용 가능한 차단 패치를 한 번에 받아 보세요. 보안 운영팀이 그대로 점검·티켓팅에 쓸 수 있는 형태로 정리해 드립니다.