ida pro scripts
I've searched the web and this forum for a tutorial/example in writing a decompression script in IDA Pro, but results in nothing. I'm currently working on a binary file which has many compressed components, which when decompressed will become executable program (many executable in one "image" file). I wonder how to do this so that after I traced through the decompression routine (which is also present inside the "image" file), I can jumped into the decompressed components, but still within IDA Pro. Note that the current approach I use is by decompressing each of the compressed components and disassemble it separately. It's an inefficient approach. I'm going to encounter more and more executable file like this in the future. Any hints ?