Random Encoder 2
Okay, I made the encoder more random now. Good luck!
import random as r
r.seed("try_this_lol_1234567890!@#$%^&*()qwertyuiopasdfghjklzxcvbnmQWERTYUIOPASDFGHJKLZXCVBNM")
flag = "GCTF24{FLAG_REMOVED}"
encoded = ""
for i in flag:
a = i.swapcase() if r.randint(1, 2) == 1 else i
b = chr(ord(a) + r.randint(500, 600))
encoded += b.swapcase() if r.randint(1, 2) == 1 else b
print(encoded) # Flag is ʘⱮˌɳɸȾɅȷⱤɽɉʍɿɅɚɚɳɰʱɚɤⱯʀꞮ˃ⱥɸɝʢɬʴʪȱʡȨʛʋɅʔɰƩʚKey Components
a = i.swapcase() if r.randint(1, 2) == 1 else ib = chr(ord(a) + r.randint(500, 600))encoded += b.swapcase() if r.randint(1, 2) == 1 else b
Last updated