challenges-descriptions/en/ancient_crypto.html

12 lines
717 B
HTML
Raw Normal View History

2022-02-18 00:20:57 +01:00
So, I've heard you're kinda new to cryptography ? </br>
</br>
Basically, in almost every challenge you'll be provided a ciphertext that will look mostly garbage to you, and your goal will be to recover the original message. </br>
Messages are usually encrypted with a well-known cipher, so first step would be to guess the cipher and do some research on how to break it. </br>
Here is a list of useful websites: </br>
- https://www.dcode.fr/en </br>
- https://gchq.github.io/CyberChef/ </br>
- https://docs.python.org/3/ (because if you try to solve the crypto challenges in C it will be long and painful) </br>
</br>
The flag is the decrypted message put into 42CTF{}. </br>
Ex: 42CTF{Th1s_1s_a_Fl4g}<br>
Good luck !