with open('CROSSWD.TXT', 'r') as f1:
dic = [word.strip() for word in f1.readlines()]
with open('encrypted.txt', 'r') as f2:
enc = f2.readline().strip().split()
for word in enc:
now = dic.index(word) + 1
print(chr(now >> 8), end = '')
print(chr(now & 255), end = '')
【Write Up】pain
19011343447 2025-08-22 08:04:01 50 0 返回题目详情


作者:19011343447
18
提交0
收入相关WriteUP
-
SusCTF2017-Caesar cipher
***收费WriteUP请购买后查看,VIP用户可免费查看***
- Crypto
- 4年前
-
easy_crypto
***收费WriteUP请购买后查看,VIP用户可免费查看***
- Crypto
- 4年前
-
简单加密
***收费WriteUP请购买后查看,VIP用户可免费查看***
- Crypto
- 4年前
-
2018-鼎网杯-3-track_hacker
***收费WriteUP请购买后查看,VIP用户可免费查看***
- Crypto
- 2年前
-
强网杯-强网先锋辅助
***收费WriteUP请购买后查看,VIP用户可免费查看***
- Crypto
- 2年前