Don't like this style? Click here to change it! blue.css
OK our goal this week:
In this one I'm checking to see if your pointer is still in use, and if I see no then I prevent reading and writing after freeing.
So our friend tcache poisoning won't work.
In fact, a whole lot has changed.
This week I want to teach you the exploit: Fastbin Dup
It looks like this on the surface:
A = malloc(somefixedsize);
B = malloc(somefixedsize);
free(A);
free(B);
free(A);
C = malloc(somefixedsize)//will be A
fgets(C, 8, stdin)//send target to C
D = malloc(somefixedsize)//D will be B
E = malloc(somefixedsize)//will be A again
F = malloc(somefixedsize)//will be target!
That's what happens in the how2heap repo too
A dup (pronounced doop/dupe) is a way to CREATE UAF from some other smaller vulnerability.
We will accomplish this in many ways later (including fake chunks in the middle of in-use chunks), but the principle is always the same:
BUT this story gets a little harder than I wanted pretty fast...
SO I'm going to give you a couple foundations to give you clear thinking in the next steps.
Fastbins are singly linked lists of chunks all the same size.
They act just like tcache in many ways.
OK tcache lived on the heap as a singly linked list with counts.
Fastbins live in glibc (the main arena) as singly linked lists with NO COUNTS.
Why have counts? To fight fragmentation
How do fastbins fight fragmentation? (Imagine 1 million tiny fast bin chunks in the worst orderings... ugh)
Whenever someone asks for something too big the fastbins CONSOLIDATE
This is our first time in the glibc source code really.
This one is basically just checking that you aren't freeing the same chunk twice in a row.
No problem we just do: free(a), free(b), free(a)
(Aside: why won't this ever be patched? Think millions of chunks)
This one is basically saying, hey if I'm handing you an address I'll just double check that the size matched the fastbin I'm pulling from.