Reputation: 3507
I have an EXE file in OllyDbg that uses a DLL. I've found an option to stop the EXE execution when the DLL loads, but I would now like to put a breakpoint everytime the execution enters the DLL module.
I thought about puttin a breakpoint on every RETN
(and maybe CALL
) instruction of that module, but it will be a huge pain... So what's the way to pause execution every time it enters a specific module (like xxx.dll) ?
Upvotes: 0
Views: 3531
Reputation: 31
Try this when your execution break (stoped EXE execution when the DLL loads),
now your execution will break on every time any exported function is called. Hope this will solve your problem.
Although this can be automate using OllyDbg scripts if you need this frequently.
Upvotes: 3