文章预览
MISC 01 签到m13c 赛题描述:简单签个到 解题思路: 直接随波逐流工具 或者写脚本,凯撒密码解密 def caesar_decrypt (ciphertext, shift) : decrypted_text = "" for char in ciphertext: if char.isalpha(): shift_amount = shift % 26 if char.islower(): decrypted_text += chr((ord(char) - shift_amount - 97 ) % 26 + 97 ) else : decrypted_text += chr((ord(char) - shift_amount - 65 ) % 26 + 65 ) else : decrypted_text += char return decrypted_text ciphertext = "eccgxj{Nywx_e_W1qtpi_Q13g}" shift = 4 print(caesar_decrypt(ciphertext, shift)) ayyctf{Jut_a_S1mple_M13c} 02 shark 赛题描述: 黑客监听了小岩输入的flag... 解题思路: 按照已给的usb键本找到对应按键,
………………………………