ytn86 / kubectf

Kubernetes CTF

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

kubectf

Requirements

  • minikube
  • kubectl
  • Docker Engine
    • Add { "insecure-registries": ["docker.for.mac.localhost:5000"] } to Docker configuration.

more information docs/requirements.md

Getting Started

$ minikube start --driver=virtualbox
$ ./setup.sh

Rule

Assuming you've penetrated a vulnerable Pod, perform a privilege escalation and look for a Flag (a string of the format k8sctf{...} ).
There is a victim pod in the namespace for each problem, and you enter into this pod to challenge the problem.
No changes should be made to anifests. You should work within Pod as a attacker.

$ kubens mountme
❯ kubectl get pods
NAME                      READY   STATUS    RESTARTS   AGE
victim-7c5745b4dc-jxd5t   1/1     Running   0          14m

❯ kubectl exec -it victim-7c5745b4dc-jxd5t bash
I have no name!@victim-7c5745b4dc-jxd5t:/$

Challenges

Title Difficulty Description
Mount me 🔥 Link
Can You Keep A Secret? 🔥 Link
Treasure Hunt 🔥🔥 Link
Mount me 2 🔥🔥 Link
Sniff 🔥🔥 Link

Writeups

TBD

About

Kubernetes CTF


Languages

Language:Shell 98.2%Language:Dockerfile 1.8%