반응형
이후 커리큘럼을 진행하는데 있어, python3가 필요하므로 이를 설치하고
파이썬 파일을 실행시켜서 플래그를 제출하라고 한다.
이미 파이썬 설치 관련 글들을 적어 두었으니 python3를 설치하고
#!/usr/bin/env python3
import sys
# import this
if sys.version_info.major == 2:
print("You are running Python 2, which is no longer supported. Please update to Python 3.")
ords = [81, 64, 75, 66, 70, 93, 73, 72, 1, 92, 109, 2, 84, 109, 66, 75, 70, 90, 2, 92, 79]
print("Here is your flag:")
print("".join(chr(o ^ 0x32) for o in ords))
파일을 실행하면
플래그를 준다.
반응형