전재윤_ 2020. 5. 25. 19:34

vmware를 이용해 bandit에 접속하기

https://soulhack.tistory.com/89

 

리눅스와 친해지자! Bandit을 이용하기(Level0 -> Level1)

동아리 내에서 리눅스에서 익숙해지기 위해서 사용하는 워게임(Wargame)사이트가 있다. 바로 OverTheWire에서 Bandit이라는 사이트이다. http://overthewire.org/wargames/bandit/ 이건, 그 사이트로 가기 위한 링..

soulhack.tistory.com

Level 0 ~ 14

https://inha-study-programming.tistory.com/3

 

포너블 스터디 1주차 과제

Level 0 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 pas..

inha-study-programming.tistory.com

Level 14 -> Level 15

Goal

The password for the next level can be retrieved by submitting the password of the current level to port 30000 on localhost.

 

sol1) telnet 이용

 

telnet [IP 또는 도메인] [포트]

 

telnet localhost 30000 입력

이전 비밀번호 4wcYUJFw0k0XLShlDzztnTBHiqxU3b3e 입력

 

next level password: BfMYroe26WYalil77FoDi9qh59eK5xNr 

 

sol2) nc 이용

 

echo 4wcYUJFw0k0XLShlDzztnTBHiqxU3b3e | nc localhost 30000

 

위와 같은 결과를 얻을 수 있음

 

https://extbrain.tistory.com/103

 

[네트워크] 텔넷(telnet) 명령어 - 포트(Port) 확인

▶네트워크 텔넷(telnet) 명령어 - 포트(Port) 확인 ▶설명 텔넷(telnet)을 이용해 해당 포트(Port)가 접속 가능한지 확인하는 법을 알아보도록 하겠습니다. ▶사용법 윈도우 명령 프롬프트에서 실행한

extbrain.tistory.com

https://m.blog.naver.com/v_lovepooh_v/20149737669

 

리눅스 echo 명령어 사용법

리눅스 echo 명령어 사용법 1. 기능 echo는 인수로 지정된 문자열을 그대로 화면에 출력한다. 이것은 인수...

blog.naver.com

https://websecurity.tistory.com/109

 

리눅스(Linux) Netcat(nc) 명령어

nc(netcat) 넷캣(Netcat)은 TCP나 UDP 프로토콜을 사용하는 네트워크 연결에서 데이터를 읽고 쓰는 간단한 유틸리티 프로그램이다. 일반적으로는 UNIX의 cat과 비슷한 사용법을 가지고 있지만 cat이 파일�

websecurity.tistory.com