标签: c linux heap
是否有hello world heap overflow示例?有人有演示吗?
答案 0 :(得分:2)
#include <stdlib.h> #include <string.h> int main() { const size_t t=1<<24; while(1) memset(malloc(t), 0xDE, t); }
在任何时候都可以毫不费力地杀死它!