Writeups OverTheWireBanditLinuxROT13

Bandit 11 Writeup - OverTheWire

Writeup for Bandit level 11 from OverTheWire: ROT13 decoding.

Contents

Wargame: Bandit

Level: 11

Category: Linux Fundamentals

Description

data.txt contains text where every letter has been rotated by 13 positions (ROT13). Decoding it gives the password.

Overview

Solution

cat data.txt | tr 'A-Za-z' 'N-ZA-Mn-za-m'

Password

JVNBBFSmZwKKOP0XbFXOoW8chDz5yVRv

← Back to Blog