Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- easy aseembly
- Dreamhack
- 세명컴퓨터고등학교
- rev
- 247ctf
- rop
- RAM 구조
- tjdmin1
- format-string-bug
- CodeEngn
- misc
- pwnable.tw
- yawa
- Beginner
- Reverse Engineering
- hacking
- rev-basic-1
- foobar ctf
- pwnable
- 메모리 구조
- reversing.kr
- downunderctf
- downunder
- simple-operation
- wargame
- 코드업
- easycrack
- 기초 100문제
- rev-basic-0
- system hacking
Archives
- Today
- Total
목록downunderctf (1)
Tjdmin1

2024년 DownUnderCTF에 출제된 문제입니다.Analysismain Functionint main() { init(); char name[88]; int choice; while(1) { choice = menu(); if(choice == 1) { read(0, name, 0x88); } else if(choice == 2) { printf("Hello, %s\n", name); } else { break; } }}코드 자체는 쉽습니다. 1. menu에서 할 일을 선택해 choice로 넘겨줌2. choice가 1이면 read로 0x88만큼 name..
Pwnable
2024. 7. 11. 23:38