Reverse Engineering c#

Status
Not open for further replies.

willthiswork89

Right off the assembly line
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:

Zeeshan Quireshi

C# Be Sharp !
well C# 2.0 code is specially protected n encrypted to make it very difficult to reverse engineer , dunno if you'll be able to do so .

although this may help a bit *www.google.co.in/search?q=reverse+...s=org.mozilla:en-US:official&client=firefox-a
 
K

khattam_

Guest
Try this:

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...
 
Status
Not open for further replies.
Top Bottom