PT-2025-36626 · Go · Github.Com/Coder/Coder/V2
Published
2025-09-05
·
Updated
2025-09-05
CVSS v3.1
8.1
High
| Vector | AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:N |
Summary
Insecure session handling opened room for a privilege escalation scenario in which prebuilt workspaces could be compromised by abusing a shared system identity.
Details
Coder automatically generates a session token for a user when a workspace is started. It is automatically exposed via [
coder workspace owner.session token](https://registry.terraform.io/providers/coder/coder/latest/docs/data-sources/workspace owner#session token-1). Prebuilt workspaces are initially owned by a built-in prebuilds system user.When a prebuilt workspace is claimed, a new session token is generated for the user that claimed the workspace, but the previous session token for the
prebuilds user was not expired. Any Coder workspace templates that persist this automatically generated session token are potentially impacted.For example, the coder-login module allows template authors to automatically configure the coder CLI to be authenticated with the Coder deployment.
This causes a script to be run on workspace startup that runs the command
coder login using the automatically generated user session token c.f. https://github.com/coder/registry/blob/8677e7d52b374b025c4820d09049dc6b008beee8/registry/coder/modules/coder-login/main.tf#L23This module was originally written before the inception of the prebuilds feature in Coder, which essentially creates a "pre-warmed" pool of workspaces owned by a particular
prebuilds system user.When this module is invoked on a prebuilt workspace, it causes the Coder CLI inside the workspace to persist the session token for the
prebuilds user to disk. Because the coder-login module checks if the CLI is authenticated, the script exits early before updating the session token, leaving the Coder CLI authenticated as the prebuildsuser upon claim:Impact
Important: Deployments that have never utilized the prebuilds feature are not affected by this vulnerability.
This vulnerability requires a previously authenticated user to claim a prebuilt workspace from a template configured to store the prebuilds user session token as described above.
The
prebuilds user has no specific roles, so its credential has the same level of access as a regular member user, meaning a user with the prebuilds user's credential can move laterally to any other prebuilt workspace, or create new workspaces as the prebuilds user.This means that a malicious authenticated actor can potentially execute code on other workspaces owned by the
prebuilds user and potentially access information of other users once they claim a previously poisoned workspace.Remediation
Note that prebuilt workspaces claimed previous to the fix may have been affected by this vulnerability. It is recommended that users re-create their workspace if it was created from a prebuild.
To identify potentially affected workspaces, run the following SQL query against the Coder database:
SELECT w.id, w.name, w.owner id, u.email
FROM workspaces w
LEFT JOIN users u ON u.id = w.owner id
WHERE w.owner id <> 'c42fdf75-3097-471c-8c33-fb52454d81c0'::uuid
AND NOT w.deleted
AND EXISTS (
SELECT 1
FROM workspace builds AS wb
WHERE wb.workspace id = w.id
AND wb.initiator id = 'c42fdf75-3097-471c-8c33-fb52454d81c0'::uuid
);
Previous manually created tokens for the prebuilds user are left as-is. You may wish to review these viacoder tokens list --all
Premium license customers can also take advantage of the audit logs feature to query actions performed by the
prebuilds user.would indicate a potentially malicious action aimed at achieving persistence
username:prebuilds resource type:api key
Following filter can be used to list all write operations performed by the
prebuilds user (including failed attempts to update various settings)username:prebuilds action:write
Patched versions
Fix
Insufficient Session Expiration
Improper Privilege Management
Found an issue in the description? Have something to add? Feel free to write us 👾
Related Identifiers
Affected Products
Github.Com/Coder/Coder/V2