분류 전체보기
-
라즈베리파이 포맷 오류tmp/[?] trouble [!] 2018. 11. 19. 05:21
요즘 라즈베리파이를 포맷할 일이 많아졌는데 Win32 Disk Imager로 포맷을 할 때 다음과 같은 오류가 계속 발생한다... An error occurred when attampting to write data to handle.Error 5: 액세스가 거부되었습니다. 해결 방법으로는 cmd를 열고 diskpart 를 입력하여 diskpart command line에 다음과 같이 입력해주면 된다. Ref : http://oddsnsods.net/blog/?p=100
-
gdb-peda에서 heap에 대한 정보 보기tmp/Tip 2018. 11. 19. 00:36
[설치] cd ~/ git clone https://github.com/scwuaptx/Pwngdb.git cp ~/Pwngdb/.gdbinit ~/ [명령어] gdb-peda$ heapinfo gdb-peda$ chunkinfo gdb-peda$ chunkptr 위 명령에뿐만 아니라 아래 링크를 타고 가면 여러가지 heap에 대한 정보를 출력해 낼 수 있는 명령어를 지원한다. Ref : https://github.com/scwuaptx/Pwngdb
-
[Toddler's Bottle] blukat write upSystem hacking training/pwnable.kr 2018. 11. 15. 23:34
오랜만에 머리도 식힐겸 pwnable.kr toddler 문제를 잡았습니다. 요로쿵 생긴 귀여운 친구에용 Sometimes, pwnable is strange... hint: if this challenge is hard, you are a skilled player. ssh blukat@pwnable.kr -p2222 (pw: guest) 많이 쉬운 문제였습니다. 어렵게 생각해서 문제지...ㅎ blukat@ubuntu:~$ cat blukat.c #include #include #include #include char flag[100]; char password[100]; char* key = "3\rG[S/%\x1c\x1d#0?\rIS\x0f\x1c\x1d\x18;,4\x1b\x00\x1bp;5\x0..
-
영어 회화 5일차영어 공부 2018. 10. 5. 20:12
[10월 5일 (금)] Do I look all right? : 나 괜찮아 보여? Don't mess with me. : 까불지마 Enough is enough : (듣기 싫은 소리를 계속할 때) 충분하니까 그만해 Going down? / Going up? : (엘레베이터 탔을 때) 올라가니? / 내려가니? Good for you : 축하해! 잘됐다~ Good luck to you! : 행운을 빌어, 잘하고 와~ I am in a hurry : 저 지금 급해요..., Pretty good : (good 보다 많이 사용) 오! 괜찮아~! // good >> pretty good >> realy good You flatter me : 당신이 나를 우쭐하게 하네요 (+ 고맙다) For sure : 확실해! (..
-
영어 회화 4일차영어 공부 2018. 10. 5. 20:12
[10월 4일 (목)] She has a baby face : 동안이다. // baby face : 동안 I am crazy about her : 나는 그녀에게 빠져있다. // crazy : 빠지다 I can't stand it. : 더이상 못참겠어 // stand : 참다 I have no appetite. : 식욕이 없다. I will do it for you. : (흔쾌히) 내가 해줄게~ Incredible : (리액션) 대단해~ It's on me : (계산할 때 계산서를 들고) 내가 살게 Keep it to yourself : 너만 알고있어 Let's call it a day : (두 남녀가 데이트하고 있을때) 이쯤에서 그만하자. //call : 끝내다 No wonder : 어쩐지~, 그러면 당..
-
LOB All Clear!System hacking training/Hackerschool LOB 2018. 10. 4. 14:56
드디어 미루고 미루던 LOB를 올클 하였다. login: death_knight Password: Last login: Mon Apr 23 00:33:26 from 192.168.0.1 [death_knight@localhost death_knight]$ ls dropped_item.txt [death_knight@localhost death_knight]$ cat dropped_item.txt You're so great! This is a token to the next gate. ,. ,' `. ,' __ `. ,'.-'____`-.`. ,'_.-'' ``-._`. ,',' /\ `.`. ,' /.._ O / \ O _.,\ `. ,'/ / \ ``-;.--.:-'' / \ \`. ,' : : \ ..
-
LEVEL 20 death_knight write-upSystem hacking training/Hackerschool LOB 2018. 10. 4. 14:56
xavius -> death_knight [xavius@localhost xavius]$ cat death_knight.c /* The Lord of the BOF : The Fellowship of the BOF - dark knight - remote BOF */ #include #include #include #include #include #include #include #include #include main() { char buffer[40]; int server_fd, client_fd; struct sockaddr_in server_addr; struct sockaddr_in client_addr; int sin_size; if((server_fd = socket(AF_INET, SOCK_..
-
[Exploit tutorial] Corelan part 1 : Stack Based OverflowsSystem hacking training/Windows 2018. 10. 3. 10:15
윈도우 Exploit을 공부하던 중 Corelan 팀에서 작성한 문서를 발견했다. 이 글은 Corelan 팀의 문서를 토대로 작성하였다. Easy RM to MP3 Converter에 존재하는 취약점을 예로 exploit을 작성해본다. 해당 취약점은 .m3u 파일을 만든 후 파일을 로드하는 것으로 공격이 가능하다. (스택 기반 오버플로우) [구성환경] OS : Windows XP sp 3 (ENG) Language : python 2.7 Target : Easy RM to MP3 Converter [exploit db] CVE-2009-1330 : https://www.exploit-db.com/exploits/10602/ ETC(N/A) : https://goo.gl/Vc3kFF Ref : https:..