Bait A Phish
Bait A Phish
Security Pulse
tutorial · bandit

Bandit Level 29

Git repo: inspect commits/branches to find the hidden password.
banditgithistory
Narration (cached)
Marks this level complete in your browser.

Goal

Clone the repo:

ssh://[email protected]:2220/home/bandit28-git/repo

and find the password for the next level.

Hints

Solution (click to reveal)

On your local machine:

cd ~/overthewire

git clone ssh://bandit28-git@bandit.labs.overthewire.org:2220/home/bandit28-git/repo bandit28-repo
cd bandit28-repo

git log --oneline
# inspect interesting commits

git show HEAD
# or search history:

git log -p | less

Find the password in the repo content or history.

Bandit Level 28Bandit Level 30