Dennis Elser (dennis) <dennis backtrace de> |
Thursday, March 29 2007 13:40.44 CDT |
When quickly looking through a disassembly, one is interested in calls to subfunctions in the first place. In order to visually emphasize call instructions, I've written a little plugin for IDA Pro to color call and branch instructions dynamically. Colors can be customized by the user to his likings. The plugin works independet on the processor architecture.
The plugin can be found in my repository and must simply be placed into your plugins folder (after you've compiled it) ;-)
Credits go to Ilfak since I've adopted most of his "Olden" plugin code (http://hexblog.com/2007/03/dynamic_coloring.html).
|
A similar solution is to turn on "options->general->basic block boundaries". Much the same effect is achieved, except that the branch and call instructions have blank lines after them instead of being colored. |
|
Yep, I have additionally turned this on. My intention first was to color the instruction itself (instead of the whole line) but it doesn't seem to be possible with the current IDA SDK. |
|
doesnt seem to colour "call eax " etc |
thanks, will look into it this weekend
edit: just tested it, works for me.. |
|
Any chance of providing a binary for IDA Pro 5.0? |
|
no, it works on 5.1 and above only (as far as I know). the reason is that IDA 5.1 introduced a specific callback which is used by this plugin. |
|