[ Docker ] Bandit Wargame 만들기 - 11번 문제 ( 13 / 33 )
1. Bandit11 목표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 positionsCommands you may need to solve this levelgrep, sort, uniq, strings, base64, tr, tar, gzip, bzip2, xxd 2. Bandit11 구현# 비밀번호 root 입력 접속ssh -oStrictHostKeyChecking=no root@localhost -p 2220chown -R root:root /home/bandit11/.[!.]*echo Gu..
[ Docker ] Bandit Wargame 만들기 - 10번 문제 ( 12 / 33 )
1. Bandit10 목표The password for the next level is stored in the file data.txt, which contains base64 encoded dataCommands you may need to solve this levelgrep, sort, uniq, strings, base64, tr, tar, gzip, bzip2, xxd 2. Bandit10 구현# 비밀번호 root 입력 접속ssh -oStrictHostKeyChecking=no root@localhost -p 2220chown -R root:root /home/bandit10/.[!.]*echo VGhlIHBhc3N3b3JkIGlzIElGdWt3S0dzRlc4TU9xM0lSRnFyeEUxaHh..
[ Docker ] Bandit Wargame 만들기 - 9번 문제 ( 11 / 33 )
1. Bandit9 목표The password for the next level is stored in the file data.txt in one of the few human-readable strings, preceded by several ‘=’ characters.Commands you may need to solve this levelgrep, sort, uniq, strings, base64, tr, tar, gzip, bzip2, xxd 2. Bandit9 구현# 문제의 파일이 크기 때문에 해당 파일을 첨부하였다.# Bandit의 경우 관리자가 주기적으로 비밀번호를 변경하고 있다.# 하여 해당 파일을 다운로드 하는 방법만 설명하고 첨부된 파일 링크를 통해 구현을 진행하면 된다.# 비밀번호 ..