본문 바로가기

전체 글

(63)
[2023_동계] 6주차 결과_방구석 꼬마들 2024.02.14(수) 장범규 https://jjdol.tistory.com/64 모각코 6일차 결과 (2024.02.14) tcache_dup2 #include #include #include #include char *ptr[7]; void initialize() { setvbuf(stdin, NULL, _IONBF, 0); setvbuf(stdout, NULL, _IONBF, 0); } void create_heap(int idx) { size_t size; if (idx >= 7) exit(0); printf("Size: "); scanf("%ld", &size); pt jjdol.tistory.com 송민경 https://minkyung0505.tistory.com/39 모각코 6회차 matl..
모각코 6일차 결과 (2024.02.14) tcache_dup2 #include #include #include #include char *ptr[7]; void initialize() { setvbuf(stdin, NULL, _IONBF, 0); setvbuf(stdout, NULL, _IONBF, 0); } void create_heap(int idx) { size_t size; if (idx >= 7) exit(0); printf("Size: "); scanf("%ld", &size); ptr[idx] = malloc(size); if (!ptr[idx]) exit(0); printf("Data: "); read(0, ptr[idx], size-1); } void modify_heap() { size_t size, idx; printf("i..
모각코 6일차 계획 (2024.02.14) tcache duplicate를 이용한 문제를 풀어볼 것이다.
[2023_동계] 6주차 계획_방구석 꼬마들 2024.02.14(수) 장범규 tcache duplicate를 이용한 문제를 풀어볼 것이다. 송민경 ResNet 구현 및 VGGNet과 성능 비교 손봉우 테스트 기법 종류 정리하기 김경민 알고리즘 복습하기6 다이나믹 프로그래밍 복습 김은수 메모장을 최대한 완성해볼 것이다
모각코 5일차 결과 (2024.01.30) tcache_dup // gcc -o tcache_dup tcache_dup.c -no-pie #include #include #include #include char *ptr[10]; void alarm_handler() { exit(-1); } void initialize() { setvbuf(stdin, NULL, _IONBF, 0); setvbuf(stdout, NULL, _IONBF, 0); signal(SIGALRM, alarm_handler); alarm(60); } int create(int cnt) { int size; if (cnt > 10) { return -1; } printf("Size: "); scanf("%d", &size); ptr[cnt] = malloc(size); if ..
모각코 5일차 계획 (2024.01.30) 학습한 double free 우회 기법을 통해 tcache poisoning을 해볼 것이다.
[2023_동계] 5주차 결과_방구석 꼬마들 2024.01.30(화) 장범규 https://jjdol.tistory.com/61 모각코 5일차 결과 (2024.01.30) tcache_dup // gcc -o tcache_dup tcache_dup.c -no-pie #include #include #include #include char *ptr[10]; void alarm_handler() { exit(-1); } void initialize() { setvbuf(stdin, NULL, _IONBF, 0); setvbuf(stdout, NULL, _IONBF, 0); signal(SIGALRM, alarm_handler) jjdol.tistory.com 송민경 https://minkyung0505.tistory.com/37 모각코 5회차 이미지 ..
[2023_동계] 5주차 계획_방구석 꼬마들 2024.01.30(화) 장범규 학습한 double free 우회 기법을 통해 tcache poisoning을 해볼 것이다. 송민경 vggnet 및 resnet 구현 성능 테스트 손봉우 MSSQL 임시테이블 정리 MSSQL NOLOCK 정리 김경민 알고리즘 복습하기 5 정렬 김은수 프론트엔드 부분까지 완료해놓은 메모장을 백엔드 부분까지 진행해볼 예정이다 - sql을 이용해서 서버를 통해 전달받을수 있도록 함 - 파일명이 아닌 서버 주소를 통해 화면 이동을 하도록 함