V3D4's Blog

安全技术记录/分享/交流

0%

bugku-黄道十二宫

开局拿到一张图片,大致看了下没啥隐写,根据题目名字百度了黄岛十二宫密码,发现是个杀手密码,完全没见过(⊙ˍ⊙)

具体的话可以参考https://www.bilibili.com/video/av585626175/ 这个视频

简单说就是每次往下移动一位,再右移两位,得到结果直接丢azdecrypt就行

贴个写的辣鸡脚本

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
f = open('hd.txt')
con = f.readlines()
res = ''
print(con)
r = []
j = 0
i = 0
s = open('solve.txt', 'w')
for m in range(1, 136):
if i > 14:
i = i - 15
res += con[j][i]
i += 2
j += 1
if len(res) % 9 == 0:
i = m % 9 + m // 9
j = 0

print(res)
print(len(res))
for i in range(len(res) // 15):
s.write(res[i * 15:i * 15 + 15] + '\n')

for i in range(len(res) // 9):
print(res[i * 9:i * 9 + 9])

这里的hd.txt就是把图片上的一个个打出来,如下

%,,@>@?==%88%5
,@%#@@90-7$^=
@
17,(>()1@##-$40
~,6?#%#8#=75+1
(
@1%#>,0@5)%?
%
^=)&>=1%,+7&#
8681(+8@@(,@@@
#
=#$3#%,#%%,3
,
+7,7+@===+)61

把得到结果solve.txt丢azdecrypt里面就出答案了

hd1

最后答案

flag{alphananke}