전체 글
-
bandit 5 -> 6wargame/bandit 2024. 4. 30. 05:20
https://overthewire.org/wargames/bandit/bandit6.html Level Goal The password for the next level is stored in a file somewhere under the inhere directory and has all of the following properties: human-readable 10" data-og-host="overthewire.org" data-og-source-url="https://overthewire.org/wargames/bandit/bandit6.html" data-og-url="https://overthewire.org/wargames/bandit/bandit6.html" data-og-image..
-
bandit 4 -> 5wargame/bandit 2024. 4. 30. 04:37
https://overthewire.org/wargames/bandit/bandit5.html Level Goal The password for the next level is stored in the only human-readable file in the inhere directory. Tip: if your terminal is messed up, try the “r" data-og-host="overthewire.org" data-og-source-url="https://overthewire.org/wargames/bandit/bandit5.html" data-og-url="https://overthewire.org/wargames/bandit/bandit5.html" data-og-image="..
-
bandit 3 -> 4wargame/bandit 2024. 4. 30. 04:31
https://overthewire.org/wargames/bandit/bandit4.html Level Goal The password for the next level is stored in a hidden file in the inhere directory. Commands you may need to solve this level ls , cd , cat , file " data-og-host="overthewire.org" data-og-source-url="https://overthewire.org/wargames/bandit/bandit4.html" data-og-url="https://overthewire.org/wargames/bandit/bandit4.html" data-og-image..
-
bandit 2 -> 3wargame/bandit 2024. 4. 30. 04:23
https://overthewire.org/wargames/bandit/bandit3.html Level Goal The password for the next level is stored in a file called spaces in this filename located in the home directory Commands you may need to solve thi" data-og-host="overthewire.org" data-og-source-url="https://overthewire.org/wargames/bandit/bandit3.html" data-og-url="https://overthewire.org/wargames/bandit/bandit3.html" data-og-image..
-
bandit 1 -> 2wargame/bandit 2024. 4. 30. 04:17
https://overthewire.org/wargames/bandit/bandit2.html Level Goal The password for the next level is stored in a file called - located in the home directory Commands you may need to solve this level ls , cd , cat " data-og-host="overthewire.org" data-og-source-url="https://overthewire.org/wargames/bandit/bandit2.html" data-og-url="https://overthewire.org/wargames/bandit/bandit2.html" data-og-image..
-
bandit 0 -> 1wargame/bandit 2024. 4. 30. 04:06
https://overthewire.org/wargames/bandit/bandit1.html Level Goal The password for the next level is stored in a file called readme located in the home directory. Use this password to log into bandit1 using SSH. W" data-og-host="overthewire.org" data-og-source-url="https://overthewire.org/wargames/bandit/bandit1.html" data-og-url="https://overthewire.org/wargames/bandit/bandit1.html" data-og-image..
-
OpenSSH 서버 사용하는 법리눅스 2024. 4. 30. 03:18
텔넷과 용도는 동일하지만 보안이 강화된 SSH서버를 통해 원격 연결을 해보려고 한다. 텔넷으로 연결할때는 접속한 컴퓨터가 전송하는 데이터 값이 노출되기가 쉽기 때문에 이를 해결하기 위해 리눅스에서 지원하는 openssh 서버를 사용하려고 한다. 텔넷과 비슷한 구조이지만, 데이터 전송 시 암호화가 된다. ssh 프로그램에도 여러가지가 있는데 여기서는 OpenBSD project에서 개발한 OpenSSH를 사용한다. SSH 서버 설치과정 요약1. ssh 서버 설치/가동: apt install openssh-server, systemctl restart ssh2. 방화벽 설정: ufw 22/tcp3. 클라이언트(리눅스)에서 접속: ssh 사용자명@서버ip 실습: OpenSSH 서버 사용하기apt..
-
telnet 사용하는 법리눅스 2024. 4. 30. 01:59
텔넷(telnet)이란 전통적으로 사용되어 온 원격 접속 방법이지만 지금은 보안에 취약하기 때문에 단독으로 사용하지는 않는다. 하지만 매우 기본적인 원격 접속 방법이므로 알아둘 필요가 있다. 텔넷 서비스를 이용하려면 클라이언트와 서버 두 곳에서 텔넷 프로그램이 설치되어 있어야 한다. 만약 리눅스 서버를 원격으로 다른 운영체제에서 이용하려고 한다면, 리눅스 서버에 텔넷 서버가 설치되어 있어야 한다. 클라이언트측에는 기본적으로 대부분의 운영체제에 텔넷 클라이언트 프로그램이 내장되어 있으므로 별도로 설치하지 않아도 무방하다. 또한 클라이언트와 서버 측의 os가 달라도 텔넷으로 통신하는데 문제가 없다. 이는 텔넷 뿐만 아니라 다른 서버/클라이언트 프로그램 간의 관계에서도 적용된다. 그리고 각각의 서버 프로그램은..