728x90
라쿤시티는 레드라쿤 Red Raccoon 유튜브 채널의 그루트님과 시큐리티최님이 운영하는 워게임 사이트이다.
URL: ctf.redraccoon.kr
xxd 명령으로 hexdump 결과를 보니 key is 53 문자열은 암호화되지 않았고 key가 53임을 알 수 있다. 정확히는 0x53이다.
xorkey=0x53
with open('rcity15-data.bin','rb') as f:
encrypted=f.read()
decrypted=''
for b in encrypted:
decrypted+=chr(b^xorkey)
print(decrypted)
tmp 폴더 내부에서 python 코드로 xor 암호화를 실행한다.
힌트에서 비밀번호는 늘 19 자리의 문자열이라고 했기에 19 글자를 앞에서부터 자른다. 참고로 key is 53 부분도 xor 암호화 되었기에 더 길어진 것이다.
z6Q3m8X4s1G5h9R7d0L
728x90