0000
Last updated
Last updated
CHALLENGE 0
Let's test your knowledge on Caesar's methods
The text we are provided is encrypted using Caesar cipher more specifically ROT13.
We can easily decode it using Cyberchef which is also known as the Cyber Swiss Army Knife.
The flag is FLAG{rotate_that_alphabet}
.
This one is not exactly caesar but it might be the key
We use our alphabet too frequently, let's try an alternative one
On clicking on the link, we are met with some encrypted text.
This text is encrypted using Substitution cipher.
In order to decrypt it we are supposed to substitute the characters based on their frequency.
As we can see, the letter that has the highest frequency in the given message will be substituted with E
, the one with the second highest frequency will be substituted with T
and so on and so forth.
We can also perform substitution based on known words. For example, we know that the flag format should be FLAG{}
so we can substitute the following:
The following is the substitution for all alphabets.
There are online decoders that make out task easier.
This tricky one introduces transposition