
Binäres Patchen mit Python
Patcht eine ELF-Binärdatei mit einem oder mehreren einfachen Python-Skripten.
Verwendung:
patch <binary> <patchdir|file> [patchdir|file...]
Enthält ein oder mehrere Python-Patch-Dateien, die in alphabetischer Reihenfolge gegen eine Binärdatei ausgeführt werden.
Noppen einer Adresse, Einfügen einer Assembler-Funktion und Hooken des Einstiegspunkts:
def simple_patch(pt):
# nop out a jump at the entry point
pt.patch(pt.entry, hex='90' * 5)
# inject assembly into the binary and return the address
addr = pt.inject(asm='mov eax, 1; ret')
# hook the entry point to make it call addr (ret will run the original entry point)
pt.hook(pt.entry, addr)
Ersetzen einer C-Funktion:
def replace_free(pt):
# pretend free() is at this address:
old_free = 0x804fc4
# inject a function to replace free()
new_free = pt.inject(c=r'''
void free_stub(void *addr) {
printf("stubbed free(%p)\n", addr);
}
''')
# patch the beginning of free() with a jump to our new function
pt.patch(old_free, jmp=new_free)
addr = search(data)
hook(addr, new_addr)
patch(addr, *compile arg*)
addr = inject(*compile arg*)
*compile arg* ist einer der folgenden:
raw='data'
hex='0bfe'
asm='nop'
jmp=0xaddr
c='void func() { int a; a = 1; }' (wird nur bei inject unterstützt, nicht bei patch)
Einige Skripte befinden sich im ida/-Pfad. Führen Sie sie so aus:
/Applications/IDA\ Pro\ 6.8/idaq.app/Contents/MacOS/idaq64 -A -Sida/allfuncs.py a.out
Wenn es so aufgerufen wird, erzeugt allfuncs.py a.out.funcs, das von Hardening-Skripten verwendet wird.
Diese sind derzeit etwas CGC- und x86-spezifisch, werden aber in Zukunft für die allgemeine Verwendung portiert.
./deps.sh aus, um diese automatisch zu installieren.