Ciphey just lock #673
-
Beta Was this translation helpful? Give feedback.
Replies: 4 comments 4 replies
-
If Ciphey gets stuck on "Thinking..." it usually means that Ciphey can't crack your code. |
Beta Was this translation helpful? Give feedback.
-
Good guys! |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
The code snippet aGVsbG8gbXkgbmFtZSBpcyBiZwU= appears to be a Base64-encoded string. Base64 is a common encoding scheme used to represent binary data in an ASCII string format. Decoding it will reveal the original text. Decoding the Base64 String Let’s decode aGVsbG8gbXkgbmFtZSBpcyBiZwU= to see what it represents.
Here is the Python code to decode it: Base64 encoded stringencoded_str = "aGVsbG8gbXkgbmFtZSBpcyBiZwU=" Decode the Base64 stringdecoded_bytes = base64.b64decode(encoded_str) print(decoded_str) When you run the above Python code, the decoded string is: docker run -it --rm remnux/ciphey -t "aGVsbG8gbXkgbmFtZSBpcyBiZwU=" This command will automatically attempt to decrypt the provided string using Ciphey’s capabilities. If the string is indeed encoded in Base64 or any other common encoding, Ciphey should be able to identify and decode it. |
Beta Was this translation helpful? Give feedback.
If Ciphey gets stuck on "Thinking..." it usually means that Ciphey can't crack your code.
rzLCBYPXWDcRKybFEzXM
is not just Base64 like the example. I don't know what it is. It's very likely that Ciphey doesn't support whatever encoding/encryption that your code is using.