Using IDAPython to automate deobfuscation
Opened this issue · 0 comments
shaliemay commented
Hi there,
I'm attempting to automate the deobfuscation process using IDAPython, but I've encountered some challenges. Specifically, I haven't observed any changes after executing the load_and_run_plugin("gooMBA", 0)
. I'm currently using IDA Pro 8.4
from ida_funcs import *
from ida_hexrays import *
# It's a random function address
func_t = get_func(0x57E0)
func_t_name = get_func_name(0x57E0)
print("Function Name:", func_t_name)
de = decompile(func_t)
print(de)
load_and_run_plugin("gooMBA", 0)
de = decompile(func_t)
print(de)
My ultimate goal is to write an IDAPython script that can report how many expressions gooMBA finds for each function within an input binary. Does gooMBA support automation though IDAPython in this manner or there's an alternative approach to achieve this? Any help would be appreciated!