Created
January 12, 2021 15:16
-
-
Save ajdumanhug/17313fdc6a7138088b9df2c22de8480e to your computer and use it in GitHub Desktop.
solve this
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
important = "" | |
pip_important = "flag{h4ckst33tb0ys}" | |
import base64 | |
randomvar = important.encode('ascii') | |
important_tottaly = base64.b64encode(randomvar) | |
import random | |
nothin_important = important_tottaly.decode('ascii') | |
pip_important = "" | |
supa_strong = "" | |
for n in nothin_important: | |
n = ord(n) | |
n += 1 | |
n = chr(n) | |
pip_important += n | |
if pip_important == "Ro[4OEC4[UV>": | |
print("impressive! Now append the result to this link: https://btfy.io/") | |
else: | |
print("Disapointing...") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment