iscc

MISC

书法大师

binwalk 照片后拿到zip

从属性里面拿到zip密钥

然后讲每两个笔画转成十六进制输出字符

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
a='右巾 艾衣 中赛 从牛 正一 卫女 里贝 艾林 边卫 巾乙 关少 正刀 牛摔 片片 切数 杏杏 生牛 边太 众普 从土 那问 艾一 工蓝 小数'
stroke_dict = {
'艾': 5,'衣': 6,'刀': 2,'从': 4, '牛': 4,'贝': 4, '女': 3,'卫': 3,
'太': 4,'林': 8,'一': 1,'数': 13,'中': 4,'巾': 3,'里': 7,'生': 5,'蓝': 13,'切': 4,
'众': 6,'土': 3,'问': 6,'乙': 1,'右': 5,'边': 5,'那': 6,'普': 12,'片': 4,'工': 3,
'摔': 14,'少': 4,'赛': 14,'正': 5,'关': 6,'杏': 7,'小': 3,
}
k=0
sum=0
for i in range(len(a)):
'''if(a[i] == text[i]):
continue
else:
print(a[i],text[i],end='\n')
#print(chr(b[i]),end='')'''
if(a[i] in stroke_dict):
if(k==0):
sum+=stroke_dict[a[i]]
k+=1
continue
if(k==1):
sum=sum*16+stroke_dict[a[i]]
print(chr(sum),end='')
sum=0
k=0
continue

misc2

https://www.hanloth.cn/tool/zero-width-secret

1746778172988-be97dd4c-a867-4515-8467-928bd51b0bfb.png

得到密钥iscc2025OxVg

RE

我爱看小品

py打包

1746616925699-cd591dd1-7d32-444b-8237-7643eb84d9e5.png

要用3.8版本解包

1746617005875-bc5e8544-0ec5-452b-a6e8-5065829d730f.png

反编译得到

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
#!/usr/bin/env python
# visit https://tool.lu/pyc/ for more information
# Version: Python 3.8

import mypy
import yourpy

def something():
print(' 打工奇遇')
print('宫室长悬陇水声')
print('廷陵刻此侈宠光')
print('玉池生肥咽不彻')
print('液枯自断仙无分')
print('酒醒玉山来映人')


def check():
your_input = input()
if your_input[:5] == 'ISCC{' and your_input[-1] == '}':
print("Come along, you'll find the answer!")
else:
print('Flag is wrong!')

if __name__ == '__main__':
mypy.myfun()
something()
print('Please enter flag:')
check()

更新: 2025-05-09 16:10:49
原文: https://www.yuque.com/chaye-apqbl/vsc85q/vb8ggwe2hsh421k1


http://example.com/2026/01/19/WP/2025/iscc/index/
Author
chaye
Posted on
January 19, 2026
Licensed under