ROT++
Description
Standard Caesar ciphers are too easy! This cipher was encrypted by starting at 0 and incrementing the shift for each subsequent character in the string. Write a simple program to decrypt this cipher!
Hint 1: The βalphabetβ for this challenge is A-Z followed by 0β9.
Hint 2: retroCTF{?????_??_???_????}
ROT--
We are given a text file with the cipher RPV47_ny_0wx_ol4b
As described, this was encrypted with a modified Caesar cipher where the shift starts at 0 and increases by 1 for each subsequent character
Start with a shift of 0 and increase for each character, then undo the shift
We are also given the alphabet used, which doesn't include underscores so we can safely ignore those
Flag
retroCTF{ROT13_IS_TOO_EASY}
Last updated