1. 문제 상황
2. 해결 과정
얻은 문자열이 어떤 유형인지 확인하는 습관을 기르자!
# 원격서버로부터 파일 다운받기
scp -P [port_number] -r [username]@[hostname]:/home/rcity12/ /home/kali/wargame/
# 파일 확인
ls -alh
# 두 파일 비교
diff -u rcity12-flag1.txt rcity12-flag2.txt
# 얻은 문자열을 파일 내 저장하고 유형 확인
touch abc
vi abc
file abc
# base64 복호화 (참고로 바로 echo "문자열" | base64 -d 로도 가능하다)
base64 -d abc