CTF--入門級棧溢出漏洞

0x01 源碼程序 gcc -o test test.c 即可在linux中編譯成ELF文件。這段源碼其實也很簡單,只要看結構體都可以看出漏洞大概在哪。 #include <stdio.h> struct Student {     char name[8];     int birth; }; int main(void) {     setbuf(stdin, 0);     setbuf(s
相關文章
相關標籤/搜索