Information#
Version#
Date | By | Version | Comment |
---|---|---|---|
03/05/2016 | noraj | 1.0 | Creation |
Name#
Oups it's all mixed
Category#
Cryptography
Wording#
Decipher the following flag:
eGqaelr557dK4BbK47dS17dK68cu2PVPdydK2TtR5lKC
Data(s)#
+aAzZbByYcCxXdDwWeEvV9876543210fFuUgGtThHsSiIrRjJqQkKpPlLoOmMnN/
Equipment(s)#
A computer with an OS (preferably UNIX)
Hint(s)#
The name title is a hint.
Help#
Base64
Difficulty#
Easy / Medium
Solution#
Methodology#
- Identify that is a base64 string
- Decode the base64 string and observe only garbage
- Look at the provided data and analyse it
- Identify the data as a base64 alphabet (64 characters = 26 lowercase letters + 26 uppercase letters + 10 number +
+
+/
) - Realize that the alphabet is non standard but a mixed alphabet
- Write a script that will translate one alphabet to the other and pick up the output standard base64 string and then decode it
Some scrip examples below.
Python 2#
1 | #!/usr/bin/python2 |
Python 3#
1 | #!/usr/bin/python3 |
Bash#
1 | # made with bash 4.2.47 |
Flag#
FLAG{Yesthatisjustabase64string}