OSV 1.4.0 · github-reviewed · 修改于 2026-07-21 05:16
发布时间
2026-05-22 04:35
GitHub 审查时间
2026-05-22 04:35
NVD 发布时间
2026-06-24 05:16
源文件
advisories/github-reviewed/2026/05/GHSA-f74w-272x-mqcv/GHSA-f74w-272x-mqcv.json
The refresh-token cookie was set with httpOnly: true but missing both the secure flag and the sameSite attribute. Over plain HTTP the cookie could be intercepted on the network; without sameSite, browsers attached it to cross-site POSTs, enabling CSRF against the token-refresh endpoint.
In packages/nocodb/src/services/users/helpers.ts, setTokenCookie produced the cookie with only httpOnly, an expires date, and an optional domain from NC_BASE_HOST_NAME — no secure, no sameSite. The refresh endpoint POST /api/v2/auth/token/refresh (auth.controller.ts) read the cookie unconditionally and returned a new JWT, with no CSRF token.
The fix sets httpOnly: true, sameSite: 'lax', and conditional secure: req.ncSiteUrl.startsWith('https') so the flag is active under HTTPS while still functional on plain-HTTP localhost development.
This is distinct from GHSA-x4vh-j75g-268g (refresh-token lifecycle on password reset) — different root cause, different attack vector.
secure).NC_REFRESH_TOKEN_EXP_IN_DAYS), so the exposure window is long.This issue was reported by @ik0z.