访问/secret,看到Tell me your secret.I will encrypt it so others can't see
传secret参数/secret?secret=123456发现报错
1 2 3 4 5 6 7 8 9 10
# File "/app/app.py", line 35, in secret if(secret==None): return'Tell me your secret.I will encrypt it so others can\'t see' rc=rc4_Modified.RC4("HereIsTreasure") #解密 deS=rc.do_crypt(secret) a=render_template_string(safe(deS)) if'ciscn'in a.lower(): return'flag detected!'