码迷,mamicode.com
首页 > 系统相关 > 详细

17.tcache_dup

时间:2019-06-11 09:14:31      阅读:134      评论:0      收藏:0      [点我收藏+]

标签:lib   str   sam   std   clu   bsp   mon   imp   cat   

源代码

 1 #include <stdio.h>
 2 #include <stdlib.h>
 3 
 4 int main()
 5 {
 6     fprintf(stderr, "This file demonstrates a simple double-free attack with tcache.\n");
 7 
 8     fprintf(stderr, "Allocating buffer.\n");
 9     int *a = malloc(8);
10 
11     fprintf(stderr, "malloc(8): %p\n", a);
12     fprintf(stderr, "Freeing twice...\n");
13     free(a);
14     free(a);
15 
16     fprintf(stderr, "Now the free list has [ %p, %p ].\n", a, a);
17     fprintf(stderr, "Next allocated buffers will be same: [ %p, %p ].\n", malloc(8), malloc(8));
18 
19     return 0;
20 }

运行结果

 

17.tcache_dup

标签:lib   str   sam   std   clu   bsp   mon   imp   cat   

原文地址:https://www.cnblogs.com/pfcode/p/11001476.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!