Challenge Information
- Platform: OverTheWire (Bandit)
- Difficulty: Easy
- Category: Linux
Overview
The password for the next level is stored in the file data.txt, where all lowercase (a-z) and uppercase (A-Z) letters have been rotated by 13 positions
Solution
SSH into machine on port 2220 with password from previous level.
ssh -p 2220 bandit11@bandit.labs.overthewire.org
For this we can use the tr command to translate each character by 13 positions. Like so 'A-Za-z' 'N-ZA-Mn-za-m'. This translates 'A' to 'N' and so on.
cat data.txt | tr 'A-Za-z' 'N-ZA-Mn-za-m'

Lessons Learned
- Use
trto translate characters.
Tools Used
sshcattr