Avishai's CTF Writeups

...

View on GitHub

← Back to OverTheWire

This folder contains solutions for the Krypton wargame from OverTheWire.

krypton0

level0 is only decoding this string: S1JZUFRPTklTR1JFQVQ= which gives you KRYPTONISGREAT

Flag: KRYPTONISGREAT

Next Level Writeup

krypton1

in this level there is rot13. we can use this short script to solve it: alias ROT13="tr a-zA-Z n-za-mN-ZA-M"

cat krypton2 | ROT13

image

Flag: LEVEL TWO PASSWORD ROTTEN

Next Level Writeup