일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- Cryptography
- BANDiT
- php
- THM
- Server Side Request Forgery
- War Game
- Cookie
- Recon
- OS Command Injection
- FTZ
- Reconnaissance
- over the wire
- ssrf
- Leviathan
- 파일 업로드 취약점
- php 파일 업로드하기
- php file upload
- active reconnaissance
- privilege escalation
- file upload
- access control
- active recon
- php 로그인 페이지 만들기
- php login page
- tryhackme
- sql injection
- php To Do List
- overthewire
- Authentication
- SQLi
Archives
- Today
- Total
R's Hacking Daily Log
Bandit31 본문
Over the wire - Bandit level 31
Connection : bandit31@bandit.labs.overthewire.org -p 2220
Kali linux - Terminal
이번에도 /tmp directory를 만들어서 git repository를 다운로드한다.
README.md file을 읽어보니 이번에는 Details에 적혀있는 내용의 파일을 push 해야 한다고 한다.
push라고 하는 것은 github에 file을 올린다는 개념으로 생각하면 편하다.
Details을 보니 "May i come in?"이라는 문구를 내용으로 하는 key.txt를 올리면 되는 듯하다.
여러 번 시도했는데 제대로 안되서.. ls -al로 모든 내용을 list로 출력해 봤다.
다른 level에서는 본 적이 없는 .gitignore이라는 있다.
뭔지 정확히는 몰라도 이 파일이 git에 push하는 것을 방해하고 있는 거 같다.
" rm " command로 해당 file을 삭제시키고 나서
만들어둔 key.txt 파일 push를 재시도해봤다.
git push를 눌러주니 주르륵 뭔가 익숙한 내용이 출력되길래 'yes'를 입력했다.
주르륵 내용이 나오더니, 출력된 내용들 중 다음 level의 passwd가 들어있는 걸 볼 수 있다. (oOo)
(+)
rm command는 remove의 약자로, 삭제하고자 하는 파일이나 폴더명을 뒤에 입력하여 사용하면 된다.
[ex] rm key.txt
Comments