picoCTF 2022 ~전치-시험 쓰기~

3741 단어 pythonsecurityctf

설명



Our data got corrupted on the way here. Luckily, nothing got replaced, but every block of 3 got scrambled around! The first word seems to be three letters long, maybe you can use that to recover the rest of the message. Download the corrupted message here.



먼저 message.txt를 엽니다.


heTfl g as iicpCTo{7F4NRP051N5_16_35P3X51N3_V9AAB1F8}7% 


솔직히 이 챌린지는 약간의 영감이 필요하지만 공백을 밑줄(_)로 바꾸고 잘 살펴보면 암호화 규칙을 볼 수 있습니다.


"heT" : "The"
"fl_" : "_fl"
"g_a" : "ag_"
"s_i" : "is_"
"icp" : "pic"
"CTo" : "oCT"


연결하면 The_flag_is_picoCT 를 읽을 수 있습니다. message.txt를 세 문자(3-gram)로 구분하고 디코딩해 보겠습니다.


def main():
    f = open("message.txt", "r", encoding="UTF-8")
    txt = f.read()

    n=3
    txt3gram = [txt[i:i+n] for i in range(0, len(txt), n)]
    decode_lst = []

    for i in range(len(txt3gram)):
        decode_lst.append(txt3gram[i][2]+txt3gram[i][0]+txt3gram[i][1])

    print(''.join(decode_lst))


if __name__ == '__main__':
    main()

The flag is picoCTF{7R4N5P051N6_15_3XP3N51V3_A9AFB178}를 받을 수 있습니다. 제출하세요!

좋은 웹페이지 즐겨찾기