Bait A Phish
Bait A Phish
Security Pulse
tutorial · bandit

Bandit Level 12

Reverse ROT13 using tr to rotate letters back.
banditrot13tr
Narration (cached)
Marks this level complete in your browser.

Goal

data.txt contains text where letters have been rotated by 13 positions (ROT13).

Hints

Solution (click to reveal)
  1. SSH in:
ssh bandit12@bandit.labs.overthewire.org -p 2220
  1. Decode ROT13:
cat data.txt | tr 'A-Za-z' 'N-ZA-Mn-za-m'

That output is the password for Level 13.

Notes

Bandit Level 11Bandit Level 13