写一个挖掘linux系统里堆溢出的程序

//写一个挖掘linux系统里堆溢出的程序
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>

#define ERR_EXIT(m) \
    do \
    { \
        perror(m); \
        exit(EXIT_FAILURE); \
        } while(0)

        int main(int argc, const char *argv[])
        {
            int *p = (int *)malloc(sizeof(int));
            *p = 1;
            printf("before:%d\n", *p);
            free(p);
            printf("after:%d\n", *p);
            return 0;
            }

 

© 版权声明
THE END
喜欢就支持一下吧
点赞5 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称常用语 夸夸
夸夸
还有吗!没看够!
表情代码图片

    暂无评论内容