The ELF Class
Creating an ELF object
ELF objectelf = ELF('./win32')elf = context.binary = ELF('./win32')Getting Addresses
f_win = elf.symbols['win']
f_win = elf.sym.winf_win = elf.functions['win'].addressPLT and GOT Tables
system_plt = elf.plt.system
system_got = elf.got.systemBase Address with PIE
Searching for Strings
Using libc
libcLast updated