![]() |
MarkdownPad 2 Free - Limitations |
Declaimer:
I am not responsible for the misuse of the material you are about to see.
This article is only for educational purposes.
Hands on...
Tools needed:
- .NET Decompiler (Reflector.NET, ILSpy);
- IDA;
- Hex editor (anyone).
Open MarkdownPad.exe with the decompiler, look around just to have some understanding about the application. Open the License Engine, partially the "VerifyLicense" method which looks like this...
As you can see, in the very first verification if the license key or the email are empty or null our license is invalid, which is our the case. So, the strategy is very simple, we will modify the "return false;" to "return true;", easy, one byte patch.
Let's open MardownPad with IDA and locate the hexadecimal sequence to the our "return false;".
To easily locate the "VerifyLicense" method just focus the "Function Window" and press ALT-T. After you locate the method, let's take a look to the mnemonics...
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Load method argument 1 onto the stack. | |
ldarg.1 | |
# Verify if licenseKey is not null or empty | |
call bool [mscorlib]System.String::IsNullOrEmpty(string) | |
# Branch to target if value is non-zero (true), short form. | |
# if the method IsNullOrEmpty returns anything except 0 the application execution will go to loc_3110 | |
brtrue.s loc_3110 | |
# Load method argument 2 onto the stack. | |
ldarg.2 | |
# Verify if licenseKey is not null or empty | |
call bool [mscorlib]System.String::IsNullOrEmpty(string) | |
# Branch to target if value is zero (false), short form. | |
# if the method IsNullOrEmpty returns 0 the application execution will go to loc_3112 | |
brfalse.s loc_3112 | |
loc_3110: | |
# Push 0 onto the stack as int32. | |
# This is our "return false;" -> opcode 0x16 | |
# "return true;" -> opcode 0x17 | |
ldc.i4.0 | |
ret | |
loc_3112: | |
.try { | |
ldarg.0 | |
... | |
# code... |
A very nice list of CIL instructions.
So the idea is really simple, just change the byte 0x16 to 0x17. Switch to the hex editor in the "ldc.i4.0"...
So the idea is really simple, just change the byte 0x16 to 0x17. Switch to the hex editor in the "ldc.i4.0"...
Search for the selected pattern "16 2A 02 02 ..." in the hex editor...
Now, just change the 0x16 to 0x17 (which means "ldc.i4.1") and save the file. To verify the modification open again the MarkdownPad executable with your .NET decompiler and you should see something like this in the "VerifyLicense" method...
All done! :)
Support the developers, if you want MarkdownPad 2 Pro, just go to this page (it's only 15$).