0%

BUUCTF 每日打卡 2021-5-10

BUUCTF 每日打卡 2021-5-10

引言

时间太晚了,原本想讲一讲红帽杯的 crypto 的(干啥啥不行,找 wp 第一名)

Polybius

波利比奥斯方阵密码(Polybius square) 参考了 wp 附件内容: 密文:ouauuuoooeeaaiaeauieuooeeiea hint:VGhlIGxlbmd0aCBvZiB0aGlzIHBsYWludGV4dDogMTQ= flag:解出明文后,请加上BJD{}

hint 解密内容: 在这里插入图片描述 而密文内容有 28 位 联想到波利比奥斯方阵密码加密结果为波利比奥斯方阵中的坐标 如 wp 中所说,密文中的字母对应于 “aeiou” 字符串中字母在波利比奥斯方阵中的位置 由于不知道 "a", "e", "i", "o", "u" 的排列顺序,就有 54321 种情况 而波利比奥斯方阵中(2,4)为可以是 i 或 j 所以一共有 54321*2 种情况 代码如下:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import itertools

s = "aeoiu"
sumresult = []
numsumresult = []
cipher = "ouauuuoooeeaaiaeauieuooeeiea"
for i in itertools.permutations(s, 5): # 找出全排列
sumresult.append("".join(i))

for i in sumresult:
temp = ""
for j in cipher:
temp += str(i.index(j)+1)
numsumresult.append(temp)

print('考虑(2,4)位是 i 的情况')
for i in numsumresult:
ans_ = ""
for j in range(0, len(i), 2):
xx = (int(i[j])-1)*5 + int(i[j+1]) + 96
if xx > ord('i'):
xx += 1
ans_ += chr(xx)
print(ans_)
print('考虑(2,4)位是 j 的情况')
for i in numsumresult:
ans_ = ""
for j in range(0, len(i), 2):
xx = (int(i[j])-1)*5 + int(i[j+1]) + 96
if xx > ord('h'):
xx += 1
ans_ += chr(xx)
print(ans_)

(wp 中指考虑了考虑(2,4)位是 i 的情况,大概是已经找到 flag 了) 结果为: 在这里插入图片描述

情书

附件内容: Premise: Enumerate the alphabet by 0、1、2、..... 、25 Using the RSA system Encryption:0156 0821 1616 0041 0140 2130 1616 0793 Public Key:2537 and 13 Private Key:2537 and 937

flag: wctf2020{Decryption}

唯一 迷惑人的地方就是密文每串数字前两位都是 0 到 25 之间,容易搞错 其实给了密文、密钥直接对每串数字解密就行 代码如下:

1
2
3
4
5
6
7
c = '0156 0821 1616 0041 0140 2130 1616 0793'.split()
m = ''
n = 2537
d = 937
for i in c:
m += chr(ord('a') + pow(int(i), d, n))
print(m)

结果为:iloveyou

结语

明天再将 红帽杯的 crypto 吧 希望继续坚持

欢迎关注我的其它发布渠道

-------- 本文结束 感谢阅读 --------