The ordinary write-up can't be uploaded to Steemit(lack of RC). So I uploaded here.
일반 write-up은 Steemit에 업로드하지 못하여(RC 부족) 여기에 올립니다.
For the full write-up PDF please refer to the Facebook page WARGAMER.
풀 write-up PDF는 페이스북 페이지 WARGAMER를 참고하세요.
WARGAMER(Link)
To comply with the rule, in this write-up, I just deal with some hints related to this challenge. Here is no correct answer and no solution.
룰을 준수하기 위해, 이 문서에서는 이 챌린지와과 관련된 몇 가지 힌트만을 다룹니다. 여기에 정답과 솔루션은 없습니다.
Bandit Level 11 → Level 12
Level Goal
The password for the next level is stored in the file data.txt, where all lowercase (a-z) and uppercase (A-Z) letters have been rotated by 13 positions
레벨 목표
패스워드는 “data.txt"파일에 있다. 거기에 모든 소문자 및 대문자는 위치상으로 13번 이동되어있다.
Commands you may need to solve this level
이 레벨을 클리어하기 위해 필요할 것으로 예상되는 명령어.
grep, sort, uniq, strings, base64, tr, tar, gzip, bzip2, xxd
Helpful Reading Material
참고 자료.
Rot13 on Wikipedia(Link)
Level Goal
The password for the next level is stored in the file data.txt, where all lowercase (a-z) and uppercase (A-Z) letters have been rotated by 13 positions
레벨 목표
패스워드는 “data.txt"파일에 있다. 거기에 모든 소문자 및 대문자는 위치상으로 13번 이동되어있다.
Commands you may need to solve this level
이 레벨을 클리어하기 위해 필요할 것으로 예상되는 명령어.
grep, sort, uniq, strings, base64, tr, tar, gzip, bzip2, xxd
Helpful Reading Material
참고 자료.
Rot13 on Wikipedia(Link)
This challenge requires the ability to encrypt and decrypt Caesar's passwords. If you know the principles of Caesar cipher, it will be easier.
이 챌린지는 리눅스에서 카이사르 암호의 암호화 및 복호화 능력을 요구합니다. 만약 카이사르 암호의 원리를 알고있다면 보다 수월할 것입니다.
This is some part of the resolution procedures. I could find the flag from below.
이것은 분석 과정중 일부입니다. 아래에서 플래그를 찾을 수 있었습니다.
$
$ file ./data.txt
./data.txt: ASCII text
$
$ cat ./data.txt
Gur cnffjbeq vf 5Gr8L4qetPEsPk8htqjhRK8XSP6x2RHh
$
$ cat ./data.txt | ■■■■■■■■■■■■A-M■■■■■■■■■-m]'
The password is 5T■■■■■RfCx8ug■■■■■■■■2EUu
$
$
$ file ./data.txt
./data.txt: ASCII text
$
$ cat ./data.txt
Gur cnffjbeq vf 5Gr8L4qetPEsPk8htqjhRK8XSP6x2RHh
$
$ cat ./data.txt | ■■■■■■■■■■■■A-M■■■■■■■■■-m]'
The password is 5T■■■■■RfCx8ug■■■■■■■■2EUu
$
$