4

I found a guide how to bypass it in ollydbg:

see here

But how to do that for an x64 application?

I have found following:

isDebuggerPresent

How must i manipulate this to don't get it detect the debugger?

Community
  • 1
  • 1
Martin Fischer
  • 697
  • 1
  • 6
  • 27

1 Answers1

2

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.