picoCTF 2022 ~전치-시험 쓰기~
설명
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}
를 받을 수 있습니다. 제출하세요!
Reference
이 문제에 관하여(picoCTF 2022 ~전치-시험 쓰기~), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://dev.to/karapto/picoctf-2022-transposition-trial-writeup-30cb
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
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.
heTfl g as iicpCTo{7F4NRP051N5_16_35P3X51N3_V9AAB1F8}7%
"heT" : "The"
"fl_" : "_fl"
"g_a" : "ag_"
"s_i" : "is_"
"icp" : "pic"
"CTo" : "oCT"
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()
Reference
이 문제에 관하여(picoCTF 2022 ~전치-시험 쓰기~), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/karapto/picoctf-2022-transposition-trial-writeup-30cb텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)