How To Crack Any Software By Tangible Solutions | Rare Method!

So, please be aware that this is the method that I used to crack ALL the X to X programming language converting tools. It’s pretty easy and today we will be checking out into detail how I did it.

https://www.tangiblesoftwaresolutions.com/download.html

So, first thing you gotta open the program. you will notice it says (free edition), so this will be one of our turning points, it’s key to analyze the program to see how it works so you can reverse it.

  1. Drag and drop the assembly to a .NET decompiler (i prefer dnSpy but Reflector, ILDasm and SAE also work good), and the first thing we’re gonna do is search for that specific string “free edition” - make sure the type you’re searching for is set to number/string

  2. You will find that it will have multiple methods and classes that use it (specially .ctor , aka the constructor of the form).

  3. Now we find that it checks for _g0, a boolean value (either true or false), to see whether it’s a free license or not.

  4. You will find a piece of code that looks like this :

private void _m25()
	{
		if (App._g0)
		{
			this.Text = App.ProductName + " (Free Edition)";
			return;
		}
		this.Text = App.ProductName;
	}
  1. If you analyze it, _g0 is the determinant that checks if our program is activated or not. So find its definition, started by the .ctor and set its default value to False (ldc.i4.0 for IL instruction)

  2. so instead of

// Token: 0x04000001 RID: 1 
public static bool _g0 = true;
  1. we now have
// Token: 0x04000001 RID: 1 
public static bool _g0 = false;
  1. The only thing you have to do now is see where _g0’s values are being read at or where they’re being set at.

  2. So for setvalue we have App.ctor and App.Main, we have a snippet that looks like this

private static void Main(string[] args)
	{
		Application.EnableVisualStyles();
		try
		{
			App._g0 = !App._g33();
		}
		catch
		{
			App._g0 = true;
		}
		Application.ThreadException += new _g2092()._g2093;
		frmMain.Copyright_Tangible_Software_Solutions_m21 = args;
		_g2002._g2004 = (frmMain.Copyright_Tangible_Software_Solutions_m21.Length != 0);
		Application.Run(new frmMain());
	}
  1. So, inside the try statement we have (probably) our license checker that tries to see if the license we have is valid. Since we dont even want the app to check for a license, you can delete the whole try statement, and turn the App.g0_ to a false.

  2. Once this is done, our program is premium by default and won’t check for licenses. so it’s basically cracked. THIS is it really. it’s that simple, ofcourse if you’re a newbie in RE’ing this could look complicated but as time passes you will get better!

  3. DONE!

Sorry for screenshots, but it took me 15 minutes to type. (Source: Nulled)

Enjoy!

36 Likes

Damn, I need to get into programming. There’s a software I use on a regular bases I would like to crack. I am using an oldish version and even tho its working great, the newest version, have some new features I woud LOOOOVE to use.

1 Like

How to use deep explanation please

A video will be nice please

4 Likes

I have a doubt though, won’t there be a code to check the software’s server online to verify if it has valid licence or not.

Other than that I really look forward to try this reverse engineering stuff.

1 Like

Can you please tip me
those software and how to use.

Pretty Amazing Article, Really Appreciate you putting In your Time.Also, Hope to See more of these!

1 Like

This isn’t clear.Please upload a video.It will be helpful for more people.

1 Like

What’s the software. You just might get a link to download the latest version. :slight_smile:

Cheers!!!

… And Over Every Possessor of Knowledge, There is (Some) One (Else) More Knowledgeable.

1 Like

pls up-lode video tutorial

WE WANT A VIDEO!
WE WANT A VIDEO!
WE WANT A VIDEO!
WE WANT A VIDEO!

:smile: :laughing: :joy: :smiling_face_with_three_hearts: :stuck_out_tongue_winking_eye: :kissing_closed_eyes:

3 Likes

Can you do the same using Ollydbg pls? I tried with a particular software but it was detected a debugger in the background. So in other words theoretically there is the need to disable the debugger detection (which I did not manage).

Thanks for any advice

here you got a similar approach on another target software … https://www.youtube.com/watch?v=zE2UNMeAUwE

. I am still trying to break one for myself as usually I work with Ollydbg however the method shown above looks much easier (I repeat … looks :slight_smile: )