Bandit Level 14 → Level 15
문제
https://overthewire.org/wargames/bandit/bandit15.html
목표
다음 레벨의 비밀번호를 찾는다.
현재 레벨의 비밀번호를
localhost
의 30000번 포트에 제출하면 다음 레벨의 비밀번호를 검색할 수 있다.
##
풀이
nc
명령어를 사용해 localhost
의 30000번 포트에 접속해서 현재 레벨의 패스워드를 입력한다.
1
2
3
4
bandit14@bandit:~$ nc localhost 30000
fGrHPx402xGC7U7rXKDaxiWFTOiF0ENq
Correct!
jN2kgmIXJ6fShzhT2avhotn4Zcka6tnt
Password : jN2kgmIXJ6fShzhT2avhotn4Zcka6tnt
배운 것
nc
명령어를 사용해 네트워크를 통해 임의의 데이터를 전송할 수 있다.
This post is licensed under CC BY 4.0 by the author.