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 |
Tags
- shellcode
- Leak
- writeup
- TUCTF
- format
- CANARY
- Reverse
- ASM
- PMA
- pwn
- reversing
- Bug
- pico
- CTF
- practicalmalwareanalysis
- rev
- 2018
- Rookiss
- pwnable.kr
- pwnable
- shellcraft
- Bottle
- picoCTF
- string
- Toddler's Bottle
- Read
- BOF
- FSB
- toddler
- anti
Archives
- Today
- Total
목록Binary Exploitation (1)
제리의 블로그
picoCTF 2018 buffer overflow 0
programSource #include #include #include #include #define FLAGSIZE_MAX 64 char flag[FLAGSIZE_MAX]; void sigsegv_handler(int sig) { fprintf(stderr, "%s\n", flag); fflush(stderr); exit(1); } void vuln(char *input){ char buf[16]; strcpy(buf, input); } int main(int argc, char **argv){ FILE *f = fopen("flag.txt","r"); if (f == NULL) { printf("Flag File is Missing. Problem is Misconfigured, please con..
CTF/pwnable
2018. 9. 30. 09:55