COMMITMENT ISSUES
Link: Commitment Issues
- This room calls for a bit of knowledge of git.
- Start off by downloading the zipped folder that will be needed for the challenge, challenge.zip. You can click on the folder to download it and it will go to your Downloads folder. If you already have a particular directory created for this challenge and you want this folder to be downloaded there, you could right-click on the folder and copy the link. Following this, use the command
wget and the copied link to get this folder downloaded in that directory.
- Now, unzip this folder using the
unzip command as shown below.

- When you go to the drop-in directory and list all files, you’ll find that there is a git directory.

- There is also a message.txt file which states;

- You can run
git log to view all the commits in the repository’s history.

- You can see that there was a commit where the flag we seek was created. This flag was then later removed. Since we have the commit numbers, we can view the flag using the
git show command and then append the commit number.

- The flag can be seen at the bottom of the screen. You can also find this flag by using the other commit flag.

- It has a minus sign showing that this flag was removed in this commit.