1
我將文件反彙編到IDA/OllyDbg中。如何在反彙編代碼中添加一些說明?如果我雙擊指令,我可以改變它,但我想在存在指令之間添加指令。有誰能夠幫助我?如何在IDA/Olly反彙編代碼之間添加彙編程序指令?
我將文件反彙編到IDA/OllyDbg中。如何在反彙編代碼中添加一些說明?如果我雙擊指令,我可以改變它,但我想在存在指令之間添加指令。有誰能夠幫助我?如何在IDA/Olly反彙編代碼之間添加彙編程序指令?
是not possible
在middle without destroying old instruction
添加新指令的唯一正確的方式來增加指令是detour to an empty place from existing instruction and jump back
。
現有指令
401023 xxxxxxx
401028 xxxxxxx
new instuctions placed at an empty area
404023 yyyyy
.......zzzzz
..........cccccccccc
restore old instruction destroyed by detoru jmp
...... jmp 401028
現在
在401023你組裝JMP 404023摧毀一個指令
在404023你添加要在末尾添加
其他所有指令你在401023和JMP恢復被破壞指令回到401028