OverTheWire.org Bandit Level 14 -> Level 15
http://overthewire.org/wargames/bandit/bandit15.html
다음 레벨의 암호는 현재 레벨의 암호를 localhost의 포트 30000에 제출하여 검색 할 수 있습니다.
localhost 300000 포트에 14레벨의 비밀번호를 입력하면 다음 단계의 비밀번호를 찾을 수 있다고 한다. 지난 단계에서 했던 방식으로 접속해보자.
$ ssh -p 300000 bandit15@localhost
하지만 이번에는 ssh 명령어는 보안상 연결을 할 수 없다고 출력된다. ssh 명령어 대신에 telnet 와 nc 명령어를 사용해 보자.
$ telnet localhost 30000
위의 명령어를 입력한 뒤 bandit13에서 얻은 비밀번호를 입력하면 아래와 같이 bandit15로 갈 수 있는 비밀번호를 얻을 수 있게 된다.
nc 명령어로도 가능하다.
$ nc localhost 30000
비밀번호는 BfMYroe26WYalil77FoDi9qh59eK5xNr 이다.
Bandit Level 14 → Level 15
Level Goal
The password for the next level can be retrieved by submitting the password of the current level to port 30000 on localhost.
Commands you may need to solve this level
ssh, telnet, nc, openssl, s_client, nmap
Helpful Reading Material
- How the Internet works in 5 minutes (YouTube) (Not completely accurate, but good enough for beginners)
- IP Addresses
- IP Address on Wikipedia
- Localhost on Wikipedia
- Ports
- Port (computer networking) on Wikipedia
다음 레벨의 암호는 현재 레벨의 암호를 localhost의 포트 30000에 제출하여 검색 할 수 있습니다.
localhost 300000 포트에 14레벨의 비밀번호를 입력하면 다음 단계의 비밀번호를 찾을 수 있다고 한다. 지난 단계에서 했던 방식으로 접속해보자.
$ ssh -p 300000 bandit15@localhost
하지만 이번에는 ssh 명령어는 보안상 연결을 할 수 없다고 출력된다. ssh 명령어 대신에 telnet 와 nc 명령어를 사용해 보자.
$ telnet localhost 30000
위의 명령어를 입력한 뒤 bandit13에서 얻은 비밀번호를 입력하면 아래와 같이 bandit15로 갈 수 있는 비밀번호를 얻을 수 있게 된다.
nc 명령어로도 가능하다.
$ nc localhost 30000
비밀번호는 BfMYroe26WYalil77FoDi9qh59eK5xNr 이다.
댓글
댓글 쓰기