Login
SSH: ssh [email protected] -p 2220
Challenge URL: https://overthewire.org/wargames/bandit/bandit31.html
Task
There is a git repository at ssh://bandit30-git@localhost/home/bandit30-git/repo via the port 2220. The password for the user bandit30-git is the same as for the user bandit30. Clone the repository and find the password for the next level.
Solution
There is a feature called tag in git. Git tagging is a way to mark specific points in the history of the repository.
To see tags:
git tagTo show the tag message:
git show tag_nameHere:
git tag
git show secret