码迷,mamicode.com
首页 > 其他好文 > 详细

[转]Patching the Mach-o Format the Simple and Easy Way

时间:2014-09-09 11:24:48      阅读:337      评论:0      收藏:0      [点我收藏+]

标签:des   style   blog   http   color   os   io   ar   strong   

From:http://secureallthethings.blogspot.jp/2014/08/patching-mach-o-format-simple-and-easy.html

I‘m relatively new to mac research. ?So when I find something new, that seems cutting edge, but relatively simple I question it. Has anyone else done this before? Is this in the public domain? Is this in the academic domain that I have no way of researching?

I google like hell.

I question myself (for a short period of time).

I write my congressman.

I wait.

I try to contact people in the know without letting them know to much.

Then I‘m afraid I‘ve said too much.

So here we are.

Thank‘s to the guys in #osxre (fg!) for telling what would work and not work.

This is my ‘new‘ method for patching the mach-o format.?

The macho format is simply nested segments in a very straight forward waterfall format that IMHO is much more simple than the PE and ELF formats.

As you have seen many times, this is the format, no seriously, this is it:

bubuko.com,布布扣


From:?https://developer.apple.com/library/mac/documentation/DeveloperTools/Conceptual/MachORuntime/Reference/reference.html

What is so special about this format?

It is very?hackable?easy to modify, far easier than ELF and PE formats.

There are not many code caves in a mach-o executable:
$ file ls.mach-o
ls.mach-o: Mach-O 64-bit executable x86_64

$ python ./find_caves.py ls.mach-o
[*] Looking in ls.mach-o for caves
[*] Looking for caves of 50 byes in size
No section
->Begin Cave 0x736
->End of Cave 0x10f8 ? ? ?# <--- Remember this one
Size of Cave (int) 2498
**************************************************
No section
->Begin Cave 0x4ff6
->End of Cave 0x5038
Size of Cave (int) 66
**************************************************
No section
->Begin Cave 0x54d1
->End of Cave 0x6000
Size of Cave (int) 2863
**************************************************
[*] Total of 3 caves found

The caves are large, but they are not in a section that includes read/execute attributes.

But let‘s look at the beginning of the __TEXT/_text segment/section:

bubuko.com,布布扣



Let‘s look at lower address space, what‘s going on?

?

?

bubuko.com,布布扣



Continuing:

bubuko.com,布布扣


Continuing:

bubuko.com,布布扣



You get the idea. ?Many zeros. Much waste. Wow.

But that looks like enough room for shellcode, right? (The answer is yes).

How do we make that part of the __TEXT,__text segment/section?

Easy:

1. Change the __text section Address and Offset to the beginning of your shellcode and Size to accommodate your new shellcode.

Before:

bubuko.com,布布扣


After:

bubuko.com,布布扣



2. Change LC_Main to point to the __text Offset or if a LC_UNIXTHREAD binary make sure [eip|rip] points to the new __text Address.

Before:

bubuko.com,布布扣









After:
bubuko.com,布布扣


3. You need to fork() your shellcode so that it continues after the parent has completed and you need to make sure that what LC_MAIN/LC_UNIXTHREAD was pointing to originally is the first thing that is executed whether a dyld or the __text section. Here I have the shellcode that I use in my POC.

bubuko.com,布布扣



And that‘s it. No really. That‘s it.

Here‘s the beginning of the __TEXT Segment after:

bubuko.com,布布扣



As you may have already figured out, this method works on both LC_MAIN and LC_UNIXTHREAD binaries. Also, this will work from within Fat binaries.

Proof:

bubuko.com,布布扣
Top window: netcat listener
Bottom window: Executing the patched ls.macho showing all the other successfully patched bins with my POC.


I‘ve already automated the i386/x64 intel chipset mach-o patching, expect an update in BDF supporting these chipsets and Fat binaries containing these mach-o formats.

Cheers,
Midnite_runr

[转]Patching the Mach-o Format the Simple and Easy Way

标签:des   style   blog   http   color   os   io   ar   strong   

原文地址:http://www.cnblogs.com/Proteas/p/3961628.html

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