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
相关文章
相关标签/搜索