Member-only story
The Docker Rodeo TryHackme Writeup
Room link: https://tryhackme.com/room/dockerrodeo
Note: This room is for Premium Members Only. who purchased THM premium membership.
Task 5. Interacting with a Docker Registry
Question 1. What is the port number of the 2nd Docker registry?
Answer: 7000
Question 2. What is the name of the repository within this registry?
We need to send a GET request to http://docker-rodeo.thm:7000/v2/_catalog to list all the repositories registered on the registry.
Answer: securesolutions/webserver
Question 3. What is the name of the tag that has been published?
Before we can begin analysing a repository, we need two key pieces of information:
1. The repository name
2. Any repository tag(s) published
We currently have the repository name (securesolutions/webserver) now we just need to list all tags that have been published. Every repository will have a minimum of one tag. This tag is the “latest” tag, but there can be many tags, all with different code, for example, major software versions or two tags…