Dumpster Dive Layer 0

We are given a AWS ECR public gallery link.

Trying to pull from it shows an error where there is no matching manifest for our architecture.

Lets try and check whats the ecpected architecture for the image.

Since its requiring ppc64le architecture, which we dont have, we use skopeo to pull the cointainer instead.

skopeo copy --override-arch ppc64le \
  docker://public.ecr.aws/r7v3d6d9/ctf-dumpsterdive-layer0:latest \
  dir:./ctf-layer0

Manually enumerating the docker images, we found the manifest file where they copied the flag

Last updated

Was this helpful?