F
fjhst
Unregistered / Unconfirmed
GUEST, unregistred user!
我用win32Dasm对一个程序进行调试,如下----------------->
//******************** Program Entry Point ********
:005C0B70 55 push ebp
:005C0B71 8BEC mov ebp, esp
:005C0B73 B905000000 mov ecx, 00000005
* Referenced by a (U)nconditional or (C)onditional Jump at Addresses:
|:005C0B1D(C), :005C0B7D(C)
|
:005C0B78 6A00 push 00000000
:005C0B7A 6A00 push 00000000
:005C0B7C 49 dec ecx
:005C0B7D 74F9 je 005C0B78<------(这里原来是:jne 005C0B78, 用hiew改掉了)
:005C0B7F 53 push ebx
:005C0B80 56 push esi<---------(一运行到这里,程序就退出去了,win32Dasm也跑了,为什么?)
:005C0B81 B8E8065C00 mov eax, 005C06E8
:005C0B86 E89D75E4FF call 00408128
...
...
...
...
...
//******************** Program Entry Point ********
:005C0B70 55 push ebp
:005C0B71 8BEC mov ebp, esp
:005C0B73 B905000000 mov ecx, 00000005
* Referenced by a (U)nconditional or (C)onditional Jump at Addresses:
|:005C0B1D(C), :005C0B7D(C)
|
:005C0B78 6A00 push 00000000
:005C0B7A 6A00 push 00000000
:005C0B7C 49 dec ecx
:005C0B7D 74F9 je 005C0B78<------(这里原来是:jne 005C0B78, 用hiew改掉了)
:005C0B7F 53 push ebx
:005C0B80 56 push esi<---------(一运行到这里,程序就退出去了,win32Dasm也跑了,为什么?)
:005C0B81 B8E8065C00 mov eax, 005C06E8
:005C0B86 E89D75E4FF call 00408128
...
...
...
...
...