
patching binario da Python
Applica patch a un binario ELF utilizzando uno o più semplici script Python.
Utilizzo:
patch <binario> <percorso_patch|file> [percorso_patch|file...]
Contiene uno o più file di patch Python, che verranno eseguiti in ordine alfabetico su un binario.
NOP di un indirizzo, iniezione di una funzione assembly e hook del punto di ingresso:
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)
Sostituzione di una funzione C:
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* is any of the following:
raw='data'
hex='0bfe'
asm='nop'
jmp=0xaddr
c='void func() { int a; a = 1; }' (only supported on inject, not patch)
Alcuni script si trovano nel percorso ida/. Eseguili in questo modo:
/Applications/IDA\ Pro\ 6.8/idaq.app/Contents/MacOS/idaq64 -A -Sida/allfuncs.py a.out
Se invocato in questo modo, allfuncs.py genererà a.out.funcs, utilizzato dagli script di hardening.
Attualmente sono un po' specifici per CGC e x86, ma verranno portati per uso generale in futuro.
./deps.sh per installarle automaticamente.