
Protostar-堆溢出学习-UAF(use after free) at: 2017-04-21
#0x00 序
下面看一个堆中常见的漏洞-UAF(use after free)
#0x01 C语言源代码#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <sys/types.h>
#include <stdi..