Tags: crypto 

Rating: 5.0

Original writeup (https://blog.nfrost.me/2016/05/15/tu-ctf-2016-neverending-crypto.html).
JLLiSMay 16, 2016, 6:44 p.m.

the lines the server asks us to decrypt are the same in every level. so you could get them all in the first lvl and then just <map(len, word.split( ' ' ))> and you would get a signature for each line.
Then, in levels 2 to 6, you could just <map(len, word.split( enc(' ') ))> the line you receive and then look for that signature in the list. It would fail on lvl 7.


JLLiSMay 16, 2016, 6:45 p.m.

wow...that escape XD