I found a guide how to bypass it in ollydbg:
But how to do that for an x64 application?
I have found following:
How must i manipulate this to don't get it detect the debugger?
I found a guide how to bypass it in ollydbg:
But how to do that for an x64 application?
I have found following:
How must i manipulate this to don't get it detect the debugger?
You can do it the same way as described in the guide (i.e. by patching the code of IsDebuggerPresent).
Or you can set a breakpoint at the "movzx eax, byte ptr ds:[rax+2]" instruction, and when the program stops at the breakpoint, go to RAX+2 in the Dump pane and then change the byte from 1 to 0.