This is a friendly warning that your web-browser does not currently protecting your privacy and/or security as well as you might want. Click on this message to see more information about the issue(s) that were detected. November 18th, 2016 Tetris heap spraying: spraying the heap on a budget

Tetris heap spraying: spraying the heap on a budget

Over the past decade, heap sprays have become almost synonymous with exploits in web-browsers (but let's not forget that they can be used in exploits against many other kinds of software). A great many people have published excellent descriptions of how they work, and produced various implementations with different benefits and draw-backs that fit almost any need. I won't bother describing the basic concept and the various implementations in more detail here. If you'd like to freshen up on the subject, I suggest you read the Wikipedia page on heap spraying and its the external links and references.

After having developed my first practical implementation of a heap spray for Microsoft Internet Explorer about ten years ago, I found that the amount of memory needed in some cases was too much for a realistic attack scenario. At that time, not many machines had the multiple Gigabytes of RAM needed to spray to some of the higher addresses I was forced to use for various reasons. Sure, the OS could swap memory to disk, but since disk storage was not very fast, it caused the exploit to slow to a crawl if it did not cause an out-of-memory crash.

Side note: did you know you could make a pretty good estimate of the amount of RAM installed on a system by timing large memory allocations? Simply have some Javascript allocated several megabytes of RAM over and over and when it suddenly slows down, that means the OS is swapping memory to disk. You can then see how much you have allocated, make some assumptions about how much RAM was used by other applications and the OS and calculate the amount of RAM installed pretty accurately in my experience...

Anyway, I needed a new kind of heap spray that did not allocate as much RAM as traditional heap sprays do. So, I developed a heap spray that uses significantly less RAM than a traditional heap spray does. In practice it uses about 33% less in most cases, but theoretically it could be less in certain situations.

Tetris heap-spray

To me the best way to describe this kind of heap spray is with an analogy to the game Tetris: what if the game rules were reversed and you get points for getting a block at the top of the screen as fast as possible? i.e. you get more points if you use less blocks. The best way to do this is to stack them such that you leave gaps to the sides as large as possible.

Alternating frees

Similarly, this kind of heap-spray tries to leave large gaps between memory blocks that are not immediately relevant; e.g. they are there to block lower portions of the address space from being used by future allocations, in order to get blocks that are allocated later at an address you want or need. The key to this is that even if there are large freed address ranges available between these allocated blocks, a block that is larger than all of these freed ranges cannot be stored in them and needs to be allocated after them, at a higher address. So, if, on a fresh heap, you were to repeatedly allocate memory blocks of 1 bytes, then free all the even blocks while keeping the odd blocks allocated, and then allocate a memory block of 2 bytes, that last block will be stored after all the 1 byte blocks. Because of the fragmentation we deliberately caused, these 2 bytes cannot be stored at a lower address, even though there is a lot more than 2 bytes available between the 1 byte blocks.

After allocating 1 byte blocks: Address Contents 0 [1st 1 byte block] 1 [2nd 1 byte block] 2 [3rd 1 byte block] ..... N-1 [Nth 1 byte block] Total memory usage: N bytes. After freeing even 1 byte blocks: Address Contents 0 free 1 [2nd 1 byte block] 2 free ..... N-1 [Nth 1 byte block] Total memory usage: N/2 bytes. After allocating a 2 byte block: Address Contents 0 free 1 [2nd 1 byte block] 2 free ..... N-1 [Nth 1 byte block] N [2 byte block] Address range for the 2 byte block: [N - N+2] Total memory usage: (N/2+2) bytes, or roughly half of a normal heap spray.

Alternating sizes

This gets even better if you allocate alternating large and small blocks and then free the large blocks before allocating an even larger one. For example, if you allocate a total of 10 blocks of alternating 9999 and 1 bytes, then free the larger blocks before allocating 10000 bytes, you will end up having 10005 bytes allocated in 6 blocks, 5 of these containing only 1 byte and one containing 10000 bytes. That last block start at an address 50000 bytes away from the first block.

After allocating blocks: Address Contents 0 [1st 9999 byte block] 9999 [1st 1 byte block] 10000 [2nd 9999 byte block] 19999 [2nd 1 byte block] ..... (N-1)*10000 [Nth 9999 byte block] N*10000-1 [Nth 1 byte block] Total memory usage: N*10000 bytes. After freeing blocks: Address Contents 0 free 9999 [1st 1 byte block] 10000 free 19999 [2nd 1 byte block] ..... (N-1)*10000 free N*10000-1 [Nth 1 byte block] Total memory usage: N bytes. After allocating 10000 byte blocks: Address Contents 0 free 9999 [1st 1 byte block] 10000 free 19999 [2nd 1 byte block] ..... (N-1)*10000 free N*10000-1 [Nth 1 byte block] N*10000 [10000 byte block] Total memory usage: N+10000 bytes, approximating 1/10000th of the original!! Address range reached: [N*10000 - (N+1)*10000]

Rinse, repeat

One might think at this point that this does not actually allow you to spray to a higher address without having to allocate almost the same amount of memory as a traditional heap spray first: after all, in our example we did allocate a lot of memory before we got to free most of it. However, this problem goes away once you start "stacking" these kinds of Swiss-cheese heap-sprays: first you do this for memory blocks of size A and B, where A is large and B small up to about half your target address. You then free all the A blocks and then do it again for blocks of size C and A+1, where C is significantly larger than A. You do this up to the point where if you allocate another C block, you cover your target address. At that point, you free all the C blocks before allocating a block of C+1 bytes.

After the step using the A and B blocks, you have allocated about half the memory needed for a normal heap spray up to the target address. You then free almost all the memory you have allocated so far, because the A blocks are much larger than the B blocks. The larger the difference between these two, the closer your total allocated memory goes back to 0 after this step.

During the next step you only need to cover the second half of the distance to your target, so you should not need to allocate more than half of a normal heap spray again. When you are done allocating, you have again used about half the memory of a normal heap spray, but you are now very near to allocating a block at the target address. You again free a large part of the memory you allocated, before allocating nowhere near enough to increase the amount of memory you have allocated beyond half of a normal heap spray. This then does allow us to spray the heap without having to have all memory in between the start address and the target address allocated at any point in time.

Step 1: allocate 999 and 1 byte blocks. Address Contents => 0 [999 byte block] => 999 [1 byte block] Total memory usage: 1,000 bytes Step 2: free 999 byte block Address Contents => 0 free 999 [1 byte block] Total memory usage: 1 bytes Step 3: allocate 99999 and 1000 byte blocks. Address Contents 0 free 999 [1 byte block] => 1,000 [99999 byte block] => 100,999 [1000 byte block] Total memory usage: 101,000 bytes Step 4: free 99,999 byte block Address Contents 0 free 999 [1 byte block] => 1,000 free 100,999 [1,000 byte block] Total memory usage: 1,001 bytes Step 5: allocate 100,000 byte block Address Contents 0 free 999 [1 byte block] 1,000 free 100,999 [1,000 byte block] 101,999 [100,000 byte block] Total memory usage: 101,001 bytes Address range reached: [101,999 - 201,999]

And there you have it: in the above example, we never allocated more than 101,001 bytes, but the final memory block was allocated at an offset of 101,999 from the start and ends at address 201,999. If you were targeting the address 200,000, you used only about half the amount of RAM a normal heap spray would have required.

Conclusion

The amount of RAM installed in most modern desktop and server systems is not as much of a limit to a successful exploit using a heap spray as it was 10 years ago. However, many phones and Internet-of-Things devices still have limited amounts of RAM. Also, the widespread use of 64-bit applications means that 32-bit integer math mistakes can result in out-of-bounds memory access at offsets several Gigabytes from the actual memory allocation. In such situations, the effectiveness of a heap-spray can still be impacted by available RAM.

As shown above, there are practical ways of implementing a heap spray that uses significantly less memory to reach a given address range than a traditional heap spray would, thus improving the speed and reliability of an exploit that uses it.

This technique does not require anything other than the ability to selectively free memory blocks used during the heap spray. It should therefore be possible to apply this technique to any existing heap spray implementations, providing they can free memory during the process of spraying the heap.

I've tried to come up with a generic algorithm for getting to any address with the least amount of RAM, but unfortunately it seems there are many factors that complicate things beyond the point at which I can write something generic. For instance, the minimum page size, maximum size of a heap block, other heap allocator quirks, uncertainty about the start address, and desired memory range for the final block are all things that need to be taken into consideration in such an algorithm. I'm sure some math wiz can find the optimal allocation/free algorithm for spraying a memory range up to any given address given a set of variables for these values - do let me know if you've worked it out. All I can say is that I believe the theoretical maximum gain from this technique is using about 50% less memory than a regular heap spray, but proving that is beyond my capabilities given the time I've allotted for such activities.

© Copyright 2019 by Sky­Lined. Last updated on September 9th, 2019. Creative Commons License This work is licensed under a Creative Commons Attribution-Non‑Commercial 4.0 International License. If you find this web-site useful and would like to make a donation, you can send bitcoin to 183yyxa9s1s1f7JBp­PHPmz­Q346y91Rx5DX.