OP 07 May, 2022 - 05:11 PM
(This post was last modified: 07 May, 2022 - 05:11 PM by Chiya. Edited 1 time in total.)
(07 May, 2022 - 05:03 PM)ANG Wrote: Show Morehello is the content decoded
for the ppl that wanna know how its base64 that is encoded like 6-7 times
import base64
data = open("decipher.txt", "r").read()
decoded = base64.b64decode(data)
print(decoded)
etc u can keep on going with the latest result
final base64 string is "aGVsbG8=" decode this will result in "hello"
this is incorrect using this code will give you a incorrect value error sir