입대합니다!

블로그에 더 많은 글을 쓰고싶었고 더 자주 쓰고싶었는데 블로그에 글을 쓸 시간보다 쓸 일이 생기는 시간이 너무 많았네요 ㅋㅋㅋ 동남아지역들 배낭여행하고 일본 JR패스 여행글도 쓰고 싶었고 내일로 글도 마무리 못했는데.. 군 면접관련 글도 쓰고싶었고 2023년 8월 7일 논산훈련소로 입영하여 5주간의 훈련을 한 후 군사과학기술병의 관련 연구분야로 대전쪽에서 근무하게 될 것 같습니다! 군사과학기술병의 생활에대한 정보가 너무 없어서 저도 호기심반 걱정반이지만 비교적 컴퓨터와 같은 기기를 접하고 있는 시간이 긴 병과인 만큼 도움이 될 수 있을 선에서의 정보를 제공할 수 있게 노력해보겠습니다! ...

August 6, 2023 · EBeb

SECCON BEGINNERS 2022 - simplelist[pwn] write up

Pre-survey Using libc-2.33 Source code provided thx! Welcome to memo organizer 1. Create new memo 1. Edit existing memo 1. Show memo 1. Exit > 1 [debug] new memo allocated at 0x234e2a0 Content: asdfasdfasdfasdfadfasdfasdfasfdasdfasfdasfdasdfasdfasdadsfsd first entry created at 0x234e2a0 1. Create new memo 1. Edit existing memo 1. Show memo 1. Exit > 1 malloc(): corrupted top size Aborted heap overflow exists #define CONTENT_SIZE 0x20 typedef struct memo { struct memo *next; char content[CONTENT_SIZE]; } Memo; printf("Content: "); gets(e->content); e->next = NULL; list_add(e); size 0x20 but getting data with gets ...

June 5, 2022 · EBeb

[ENG] Simplelist[pwn] Write up - SECCON BEGINNE

Pre-survey Using libc-2.33 Source code provided thx! Welcome to memo organizer 1. Create new memo 1. Edit existing memo 1. Show memo 1. Exit > 1 [debug] new memo allocated at 0x234e2a0 Content: asdfasdfasdfasdfadfasdfasdfasfdasdfasfdasfdasdfasdfasdadsfsd first entry created at 0x234e2a0 1. Create new memo 1. Edit existing memo 1. Show memo 1. Exit > 1 malloc(): corrupted top size Aborted heap overflow exists #define CONTENT_SIZE 0x20 typedef struct memo { struct memo *next; char content[CONTENT_SIZE]; } Memo; printf("Content: "); gets(e->content); e->next = NULL; list_add(e); size 0x20 but getting data with gets ...

June 5, 2022 · EBeb

WaniCTF - BabyHeap : Basic tcache poisoning

Pwn challenge at WaniCTF2021 Difficulty : Normal Github for src, file, solver, short solution Pwn challenge ‘diva’ at the same CTF requires heap overwrite to get arbitrary write access. I made this challenge to give hint for the diva. When I first learn about heap, what I needed was an environment to perform malloc, free and write freely on the heap and check how it changes. ( Since I couldn’t understand without real experiment ) ...

November 21, 2021 · EBeb