You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, I'm new to reverse engineering in C++ and I was wondering if there's any way to run an anti anti debugger insider a friendly debugger like Jetbrain's Rider or Visual Studio's. If that's not possible, is there any debugger that supports line breakpoints from the source code instead of memory breakpoints that is supported? Thanks in advance
The text was updated successfully, but these errors were encountered:
Yes, you can use the external injector executable (InjectorCLI.exe) for this. See the documentation PDF for usage.
A downside of the external injector is that the process is not hooked until after you run the injector. So if you want to use SH with Visual Studio you may want to do something like
Yes, you can use the external injector executable (InjectorCLI.exe) for this. See the documentation PDF for usage.
A downside of the external injector is that the process is not hooked until after you run the injector. So if you want to use SH with Visual Studio you may want to do something like
Start process suspended.
Run injector.
Attach debugger to the process.
I've tried to:
Launch the process normally
Inject with InjectorCLI.exe HookLibarryx64.dll
Attach the debugger to the process
Though the program can still detect that a debugger was used. Did I misinterpret your instructions or simply there's nothing to do in this case?
Hello, I'm new to reverse engineering in C++ and I was wondering if there's any way to run an anti anti debugger insider a friendly debugger like Jetbrain's Rider or Visual Studio's. If that's not possible, is there any debugger that supports line breakpoints from the source code instead of memory breakpoints that is supported? Thanks in advance
The text was updated successfully, but these errors were encountered: