![]() |
|
|
|
#1
|
|||
|
|||
|
If you don't mind software updates you can patch the program to accept all serials and deploy cracked version of the program. Probably it would be a 1-byte crack.
Another option would be to code a loader for the application to fish and save the correct serial. Personally I would go for a keygen. You can easily use decompiled .NET code to create the keygen. |
|
#2
|
|||
|
|||
|
Looking for quick way out. After you put in generic serial #, the program checks for a OP_EQUALITY. Is there a way to send the text to a basic MessageBox pop-up?
If so, what routine? I'll start searching now. |
|
#3
|
|||
|
|||
|
Found the solution.
I tricked the program into pop-ing up a MessageBox::Show(string). W00T! Original Code Code:
IL_005b: /* 03 | */ ldarg.1
IL_005c: /* 08 | */ ldloc.2
IL_005d: /* 28 | (0A)000027 */ call bool [mscorlib]System.String::op_Equality(string,
string)
ldloc.2 held proper serial#. Then I byte changed the 27 to 25 (which is the reference location of MessageBox used elsewhere in the program (looking at IL dump). So now the code reads: Code:
IL_005b: /* 00 | */ nop
IL_005c: /* 08 | */ ldloc.2
IL_005d: /* 28 | (0A)000025 */ call valuetype [System.Windows.Forms]System.Windows.Forms.DialogResult [System.Windows.Forms]System.Windows.Forms.MessageBox::Show(string)
|
![]() |
| Thread Tools | |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| help for create loader with packed program | mcr4ck | General Discussion | 27 | 09-22-2021 12:27 |
| need help making a keygen for a vds program | chad1111 | General Discussion | 2 | 12-29-2004 03:56 |