Conversation

Replying to
Interestingly, if we try to observe the file in the debugger it will not fully execute. The reason for it is a large anti-debug function that uses the API calls QueryPerformanceFrequency & QueryPerformanceCounter in addition to other functions that verify & manipulate the results
1
To bypass it, set a breakpoint on QueryPerformanceFrequency, when you reach it, return to the calling function, and take the JG jump at the end of this function. (To take the jump you can just change the OF flag). After taking the jump you can just click Run.
1
2
Show replies