ida

IDA – execute commands in WinDbg console from python script

IDA – execute commands in WinDbg console from python script Question: I have a python script to run in IDA that generates commands for WinDbg. I also open the memory dump (via the windmp64.dll loader), where the WinDbg console is already available: I want to execute commands in WinDbg console from python script. If I’m …

Total answers: 1

How to find the main() function using IDAPython

How to find the main() function using IDAPython Question: I don’t know how to find the main() function using IDAPython. How can I do this? Asked By: yangwooyel || Source Answers: Run this in the python console of IDA, and it will print the address of a function named main for funcAddr in idautils.Functions(): funcName …

Total answers: 2