---
id: CVE-2022-29178
aliases:
  - GHSA-6p8v-8cq8-v2r3
  - BIT-cilium-2022-29178
  - BIT-cilium-operator-2022-29178
  - BIT-cilium-proxy-2022-29178
  - BIT-hubble-2022-29178
  - BIT-hubble-relay-2022-29178
  - BIT-hubble-ui-2022-29178
  - BIT-hubble-ui-backend-2022-29178
  - GO-2022-0457
title: Access to Unix domain socket can lead to privileges escalation in Cilium
summary: Access to Unix domain socket can lead to privileges escalation in Cilium
severity: high
cvss: 8.8
cvssVector: 'CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:H'
vendor: cilium
product: github.com/cilium/cilium
ecosystem: go
affected:
  - 'github.com/cilium/cilium >= 1.11.0, < 1.11.5'
  - 'github.com/cilium/cilium >= 1.10.0, < 1.10.11'
  - github.com/cilium/cilium < 1.9.16
patched:
  - github.com/cilium/cilium 1.11.5
  - github.com/cilium/cilium 1.10.11
  - github.com/cilium/cilium 1.9.16
published: '2022-05-24'
updated: '2026-09-10'
sourceUpdated: '2026-09-10T03:49:31.277999630Z'
source: OSV
sourceUrl: 'https://osv.dev/vulnerability/GHSA-6p8v-8cq8-v2r3'
references:
  - url: 'https://github.com/cilium/cilium/security/advisories/GHSA-6p8v-8cq8-v2r3'
  - url: 'https://nvd.nist.gov/vuln/detail/CVE-2022-29178'
  - url: 'https://github.com/cilium/cilium/releases/tag/v1.10.11'
  - url: 'https://github.com/cilium/cilium/releases/tag/v1.11.5'
  - url: 'https://github.com/cilium/cilium/releases/tag/v1.9.16'
  - url: github.com/cilium/cilium
tags:
  - osv
  - go
epss: 0.00284
epssPercentile: 0.21207
ingestedAt: '2026-09-12T03:13:01.760Z'
---

## Overview

### Impact

Users with host file system access on a node and the privileges to run as group ID 1000 can gain access to the per node API of Cilium via Unix domain socket on the host where Cilium is running. If a malicious user is able to gain unprivileged access to a user corresponding to this group, then they can leverage this access to compromise the integrity as well as system availability on that host. Operating Systems that have unprivileged users **not** belonging the group ID 1000 are **not** affected by this vulnerability.

Best practices for managing the secure deployment of Kubernetes clusters will typically limit the ability for a malicious user to deploy pods with access to this group or to access the host filesystem, and limit user access to the nodes for users belonging to this group. These best practices include (but are not limited to) enforcing Admission Control policies to limit the configuration of Kubernetes Pod [hostPath](https://kubernetes.io/docs/concepts/storage/volumes/#hostpath) and [SecurityContext](https://kubernetes.io/docs/tasks/configure-pod-container/security-context/) fields.

### Patches

Cilium versions >=1.9.16, >=1.10.11, >=1.11.5 mitigate this issue by setting the default group to 0 (root).

### Workarounds

Prevent Cilium from running with group 1000 by modifying Cilium's DaemonSet to run with the following command:

```yaml
      containers:
      - name: cilium-agent
        args:
        - -c
        - "groupdel cilium && cilium-agent --config-dir=/tmp/cilium/config-map"
        command:
        - bash
```
instead of
```yaml
      containers:
      - name: cilium-agent
        args:
        - --config-dir=/tmp/cilium/config-map
        command:
        - cilium-agent
```

### Acknowledgements

The Cilium community has worked together with members of Isovalent and Form 3 to prepare these mitigations.  Special thanks to Daniel Iziourov and Daniel Teixeira for their cooperation.

### For more information
If you have any questions or comments about this advisory:
* Email us at [security@cilium.io](mailto:security@cilium.io)


## Affected packages

- `github.com/cilium/cilium >= 1.11.0, < 1.11.5`
- `github.com/cilium/cilium >= 1.10.0, < 1.10.11`
- `github.com/cilium/cilium < 1.9.16`

## Remediation

Upgrade to a patched release:

- `github.com/cilium/cilium 1.11.5`
- `github.com/cilium/cilium 1.10.11`
- `github.com/cilium/cilium 1.9.16`
