码迷,mamicode.com
首页 > 其他好文 > 详细

CG-CTF CRYPTO部分wp

时间:2019-08-16 18:52:37      阅读:90      评论:0      收藏:0      [点我收藏+]

标签:部分   for   ctf   oar   open   board   class   base64   font   

1,easy
base64解密得flag

2,keyboard
键盘码,在键盘上画画得flag:areuhack

3,异性相吸
根据提示,写脚本

with open(密文.txt)as a:
    a=a.read()
with open(明文.txt)as b:
    b=b.read()
d=‘‘
for i in range(0,len(b)):
    c=chr(ord(a[i])^ord(b[i]))
    d+=c
print(d)

得到flag:nctf{xor_xor_xor_biueiubiu}
但这里不知为何是biueiubiu,改为biubiubiu后正确

CG-CTF CRYPTO部分wp

标签:部分   for   ctf   oar   open   board   class   base64   font   

原文地址:https://www.cnblogs.com/harmonica11/p/11365492.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!