Skip to content

Latest commit

 

History

History
41 lines (30 loc) · 1.43 KB

Esrom.md

File metadata and controls

41 lines (30 loc) · 1.43 KB

Esrom

Challenge

This is a real challenge for you!

. ---- -- --- / -- --- / . ---- - / --.- -.-- -. ..- / .-.. ... --. / -. -.- - / -.-- ... ... .-. -- .- ..- / --.- ... -.- ...--- / .. ... -.- --- - .. ... -.- --- -

The format of the flag is: EKO{lowercase_flag}

Category: Crypto

Esrom es morse al revés, y los que son radioaficionados saben que en Morse no hay secuencia ---- (bah, en realidad sí existe pero no se suele utilizar porque es la letra "ch"); sin embargo, sí es usual la secuencia .... ("h").

Entonces básicamente hay que usar CyberChef para reemplazar . por - y - por . y pasar a texto (receta).

"THIS IS THE FLAG YOU ARE LOOKING FOR: MORSEMORSE"

O también bien en línea de comandos

# apt install morse2ascii
$ tr '.-' '-.' < esrom.txt > morse.txt
$ morse2ascii morse.txt
- decoded morse data:
this  is  the  flag  you  are  looking  for:: morsemorse

Convertir al formato EKO{lowercase_flag}:

EKO{morsemorse}

-- maurom