-1

the text is AAAAQwAAAG8AAABuAAAAZwAAAHIAAABhAAAAdAAAAHUAAABsAAAAYQAAAHQAAABpAAAAbwAAAG4AAABz

I have no idea how to decode this

2 Answers2

2

That look like base64. If the strings content [A-Z,a-z,0-9,+,/,=] then you can straight apply the following command:

echo "your strings" | base64 -d

Otherwise visit sites which can do this for you eg: https://www.base64decode.org/

I generally visit two websites to decode/decrypt i.e. https://www.dcode.fr/ and https://gchq.github.io/CyberChef/.

If you decrypt your text then it will be decrypted as

Congratulations

Prakash
  • 332
  • 2
  • 14
  • BTW, you have not accepted any answer. If you find my answer helpful then you can mark it as answer. – Prakash Jul 03 '20 at 04:51
0

This is similar to the question asked here Decrypt a text I don't know how was encrypted [duplicate]

I will give you a tip on how I decoded this:

  1. Browsed to the GSuite Toolbox
  2. I entered your text
  3. Clicked on the second option for Base64 Decode and was presented with an answer that made sense

Now, go back to the link above and read some of their answers for other suggestions.

ebell451
  • 1
  • 2