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
- ASM
- pwnable
- anti
- rev
- BOF
- shellcode
- practicalmalwareanalysis
- format
- shellcraft
- reversing
- pwn
- toddler
- Read
- FSB
- TUCTF
- pwnable.kr
- PMA
- Bottle
- pico
- 2018
- Leak
- Bug
- picoCTF
- writeup
- Rookiss
- string
- CTF
- Reverse
- CANARY
- Toddler's Bottle
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