Level Goal
The goal of this level is for you to log into the game using SSH. The host to which you need to connect is bandit.labs.overthewire.org, on port 2220. The username is bandit0 and the password is bandit0. Once logged in, go to the Level 1 page to find out how to beat Level 1.
Commands you may need to solve this level
ssh
Helpful Reading Material
0. 접속방법
접속방법은 접속프로그램에 따라 방법이 다르다. putty와 ssh를 통해 로그인하는 방법을 작성했다. 이번 시리즈는 Putty로 접속후 진행하였다.
1. 접속하기
- putty 이용하기
putty 클라이언트를 이용하여 해당서버에 접속한다. Host Name 과 Port 그리고 Connection type 에 SSH를 체크하고 Open을 누르면 해당 서버로 접속이된다.
login as: bandit0
bandit0@bandit.labs.overthewire.org's password:
bandit0@bandit:~$
콘솔창이 열리면서 login as: 옆에 커서가 깜빡인다. 아이디를 입력하고 엔터를 누르면 password를 요구한다 이때 아이디입력과 같이 password는 입력되는 값이 보이지 않는다. 위의 과정이 올바르게 진행되면 bandit0으로 서버에접속된다.
1. 접속하기
- PowerShell ssh 이용하기
Windows 키와 X키를 동시에 누르면 위의 사진과 같이 창이뜬다 여기서 Windows PowerShell(관리나)(A)를 실행시킨다.
PS C:\WINDOWS\system32> ssh bandit0@bandit.labs.overthewire.org -p 2220
다음과같이 ssh 프로그램을 이용해서 접속을 시도하면 접속이 된다.
비밀번호는 눈에보이지 않음으로 오탈자없이 입력하면 접속이된다.