天天看點

OllyDBG腳本

具體的OllyDBG腳本參考連結如下:

https://www.52pojie.cn/forum.php?mod=viewthread&tid=421750

通過特定的sub esp, xx 這樣的代碼片段來設定函數斷點的腳本如下:

var x
mov x,10001003
mov eip,x
start:
findop eip,#83ec??#
cmp $RESULT, 0 
je end
bp $RESULT
mov eip,$RESULT
add eip,3
jmp start
end:
log "finish"
mov eip,775a000d      

在下面的菜單選擇OD的腳本來運作:

OllyDBG腳本