How2Heap堆利用学习心得(二)

访客4年前黑客资讯824

上一篇,大家详细介绍了一种Double free技术性。而且完成了对malloc_hook的fastbin_attack。

此次将详细介绍怎样利用malloc中的consolidate体制来完成double free。文中会涉及到一些源码,若有表述不正确,恳求诸位高手纠正。

0x01 利用consolidate的Double Free

1.1 fastbin_dup_consolidate剖析

更先剖析一下实例编码

#include

#include

#include

int main(){

void* p1=malloc(0x40);

void* p2=malloc(0x40);

fprintf(stderr, "Allocated two fastbins: p1=%p p2=%pn", p1, p2);

fprintf(stderr, "Now free p1!n");

free(p1);

void* p3=malloc(0x400);

fprintf(stderr, "Allocated large bin to trigger malloc_consolidate(): p3=%pn", p3);

fprintf(stderr, "In malloc_consolidate(), p1 is moved to the unsorted bin.n");

free(p1);

fprintf(stderr, "Trigger the double free vulnerability!n");

fprintf(stderr, "We can pass the check in malloc() since p1 is not fast top.n");

fprintf(stderr, "Now p1 is in unsorted bin and fast bin. So we'will get it twice: %p %pn", malloc(0x40), malloc(0x40));

}

编译程序时刻加-g主要参数,动态性调节中能够同歩源代码开展剖析。

1.2步骤剖析

程序流程更先malloc分派了2个0x40的运行内存p1和p2,随后free掉chunk_p1,低于64的chunkp1会被链入fastbins中。

gef? x/40gx 0x602010-0x10

0x602000: 0x0000000000000000 0x0000000000000051

0x602010: 0x0000000000000000 0x0000000000000000

0x602020: 0x0000000000000000 0x0000000000000000

0x602030: 0x0000000000000000 0x0000000000000000

0x602040: 0x0000000000000000 0x0000000000000000

0x602050: 0x0000000000000000 0x0000000000000051

0x602060: 0x0000000000000000 0x0000000000000000

0x602070: 0x0000000000000000 0x0000000000000000

0x602080: 0x0000000000000000 0x0000000000000000

0x602090: 0x0000000000000000 0x0000000000000000

0x6020a0: 0x0000000000000000 0x0000000000020f61

查询快表,能够见到被释放出来的chunk_p1

gef? heap bins fast

─────[ Fastbins for arena 0x7ffff7dd1b20 ]─────

Fastbin[3]→ UsedChunk(addr=0x602010,size=0x50)

实行分派0x400运行内存,这时看fastbin,发觉chunk_p1早已被从快表中卸掉了。而我们在 *** all bins中找到它。

gef? heap bins fast

────[ Fastbins for arena 0x7ffff7dd1b20 ]───

Fastbin[0]0x00

Fastbin[1]0x00

Fastbin[2]0x00

Fastbin[3]0x00

gef? heap bins *** all

───[ Small Bins for arena 'main_arena' ]────

[ ]Found base for bin(4): fw=0x602000, bk=0x602000

→ FreeChunk(addr=0x602010,size=0x50)

glibc在分派large chunk(>1024字节数)时,更先实际操作是分辨fast bins是不是包括chunk。假如包括,则应用malloc_consolidate涵数将fastbin中的chunk合拼,并放进unsortbins。依据尺寸放进 *** all bins/large bins。

要我根据glibc源代码开展阅读文章剖析 ,FTP下载链接,malloc的完成在/malloc/malloc.c

malloc.c在1055行各自界定了malloc free realloc涵数

static void* _int_malloc(mstate, size_t);

static void _int_free(mstate, mchunkptr, int);

static void* _int_realloc(mstate, mchunkptr, INTERNAL_SIZE_T,

? INTERNAL_SIZE_T);

在_int_malloc的Define下寻找开启consolidate的编码一部分。

更先根据have_fastchunks分辨fastbins是不是链有空余堆。

have_fastchunks的宏定义即是分辨fastbin中是不是包括chunk,flag为0的情况下表明存有chunk。

#define have_fastchunks(M) (((M)->flags & FASTCHUNKS_BIT)==0)

假如包括chunk,可能启用consolidate来合拼fastbins中的chunk,并将这种空余的chunk添加unsorted bin中。

本实例开启consolidate的源代码

/*

? If this is a large request, consolidate fastbins before continuing.

? While it might look excessive to kill all fastbins before

? even seeing if there is space available, this avoids

? fragmentation problems normally associated with fastbins.

? Also, in practice, programs tend to have runs of either *** all or

? large requests, but less often mixtures, so consolidation is not

? invoked all that often in most programs. And the programs that

相关文章

人与自然的作文(人与自然的关系作文)

人与自然的作文(人与自然的关系作文) 【优秀作文】 敬畏自然,保护生态,建设美丽中国 人从哪里来?人类的起源,是人们关心的永恒话题。我们知道,人类从低等生物进化而来,是自然的产物。人类从诞生之日起...

匝道是什么意思(匝字怎么读)

匝道是什么意思(匝字怎么读)

在进入或驶出高速路口时,必须要按照相关要求打转向灯,这种违章你遇到过吗?凭良心讲,我8年的驾龄,第一次碰到这个违章,200元又让我长见识了!以前进入高速或驶离高速,只是习惯性打转向灯,但没想到不打转向...

2015三季度全球手机排行:三星苹果遭国产围追

伴随着2015三季度早已以往,各种手机制造商也都公布了自身的本年度新手机,例如三星的Note 5、苹果iPhone 6S、Moto X Style等。针对国内生产商而言,年末预估还会继续有小米5、华为...

如何写标题才会吸引眼球(7步教你写出吸引人眼球的文案标题)

学习培训确实不起作用吗?估计你内心很有可能有很多宽慰小孩得话。 实际上创作也是同样。常常有创作者留言板留言:“我连原創也没有,学题目方法有什么作用?” 写作自身便是一件消耗心魄的事儿,多写、多看看、多...

我国居民人均预期寿命达到77.3岁-我国居民人均预

伴随着社会经济发展的告知发展趋势,老百姓的生活水平也愈来愈高,前不久,国家卫健委公布了一项最新数据,数据信息显示信息在我国住户平均预期寿命做到77.三岁,人均寿命的提升 意味着着在我国社会经济发展医疗...

什么平板电脑比较好(最值得入手平板排行榜)

什么平板电脑比较好(最值得入手平板排行榜)

如今,平板电脑受到很多人的喜欢,携带方便使用简单,那么,消费者在购买的时候,选择哪个牌子的平板电脑最好呢?今天小编就给大家说说平板电脑性价比排行榜,赶紧来看看吧! 1.iPad 苹果iPad可玩...