alrightguys got a question, i need to bypass a security check on this test dummy i made in c#, not real positive on how to do it with Olly because c# is so different. there are no MessageBoxA to look for when you know a message box pops up, so im kinda lost on finding the message box in ASM when its c#
anybody?
Last edited by willthiswork89; 28-04-2007 at 10:08 PM.
Reason: Automerged Doublepost
Advertisements. Register and be a member of the community to get rid of them.
Load the program in Olly.
Then run it and let the messagebox pop up.
Then Pause the program.
Then execute till user code.
If it shows running (instead of paused) then click ok\cancel in the messagebox and you should
break in the line following the line containing the code for messagebox.
Well, if it does pause then you will need to "Animate Over" or "Animate Into" and run the program
where you can see the program step by step and then just press the Ok\Cancel of the messagebox
then reach the code...
If you can upload the program and send me the link, I can certainly help...