I don\'t really understand how to get around IsDebuggerPresent. I think I am supposed to find the registers used for debugging and then set it to 0 to trick IsDebuggerPresent, b
if you want your application never check it do this:
Alt + e
or open Executable modules
window.C:\WINDOWS\system32\kernel32.dll
and press ctrl + N
IsDebuggerPresent
and press enter.f2
f8
until come back to your code.TEST EAX,EAX
and after some thing like je
jnz
and etc, beware the output of IsDebuggerPresent
is saved in EAX
.nop
and if doesn't
happen change it to jmp
.