grokeus

Results 5 comments of grokeus

I think we can use this approach to find place where we fail and check if we got bad instruction: https://reverseengineering.stackexchange.com/questions/13884/how-to-get-address-where-makefunction-failed-in-ida-pro smth like that: pfn = ida_funcs.func_t() pfn.start_ea = addr...

I guess the problem is because of endianness - when I search for gopclntab I try to locate "fb ff ff ff ..." when in MIPS64 this should be "ff...

Seems working now on my hello-world sample binary. Will make some test on more binaries later

Yes, now script is able to reconstruct function names in that binary, but it fails on finding moduledata because IDA analysis doesn't find xref to gopclntab, so structure recreating won't...

Hi! Thanks for the feedback! Actually my code was written as standalone script for now. Did you make some modifications before loading as plugin? also, do you know which go...