Goal
Clone:
ssh://[email protected]:2220/home/bandit29-git/repo
and find the password for the next level.
Hints
- Don’t just look at files—look at git metadata:
- tags:
git tag - remote branches:
git branch -a - refs:
.git/(advanced)
- tags:
Solution (click to reveal)
On your local machine:
cd ~/overthewire
git clone ssh://bandit29-git@bandit.labs.overthewire.org:2220/home/bandit29-git/repo bandit29-repo
cd bandit29-repo
git tag
# if you see tags:
git show <tagname>
If tags don’t exist, check branches and commits like the previous levels.