vote up 29 vote down star
54

Obfuscation is one way, but it can't protect from breaking the piracy protection security of the application. How to make sure that the application is not tampered with, and how to make sure that the registration mechanism can't be reverse engineered. Also it is possible to make to convert C# app in native code, Xenocode is too costly.

C# provides lot of features, and is the ideal language for my code, so writing in C++ again the whole codebase is out of question.

Secure certificates can be easily removed from the signed assemblies in .NET

flag

77% accept rate

14 Answers

vote up 106 vote down

You can't.

There are steps you can take to make it a little more difficult but ultimately any executable on the local machine is crackable. Eventually that code has to be converted into native machine code and every application that is runnable is vulnerable.

What you want to do is just make it difficult enough to crack to make it not worth peoples trouble.

Some suggestions I have for you to help protect your app:

  • Obfuscate your code. Dotfuscator has a free edition and comes with Visual Studio.
  • Use public/private key or asymmetric encryption to generate your product licenses. This ensures that only you can generate your license codes. Even if your app is cracked you can be sure that they won't be releasing a key generator for your application because it is impossible to reverse the key generating algorithm.
  • Use a 3rd party packer to pack your .NET executable into an encrypted w32 wrapper application. Themida is one of the better ones. This stops people from reflecting your application in .NET Reflector and makes it a pain to unpack for reversing.
  • Write your own custom packer. If the 3rd party packers are too expensive, consider writing your own. Sometimes custom packers can be very effective because there aren't well published methods on how to unpack them. This tutorial gives a ton of good information on writing your own win32 packer.

Ultimately though, if people want your application cracked they will. Look at all the commercial software out there that has a vast amount of resources to protect their applications and yet they are cracked before the applications are even released to the public.

A skilled reverse engineer can fire up IDA-Pro and slice through your application like butter no matter what you do. A packed application can be unpacked and obfuscation only prevents it from making it a walk in the park. All your hard work with your complex license code can be undone with a single byte patch.

You just need to accept that there is a very real chance people are going to pirate your software. There are some people who are never going to pay for your application no matter what and these are the people you don't need to worry about.

There are however, many businesses out there who would never risk a lawsuit and happily buy software licenses and many computer users who either don't want to risk it, find it wrong or are not tech savvy enough to pirate. These are your true customers and you should focus your efforts on providing them with a good user experience and ignore the people cracking your software.

I've had my application pirated before and I took it as a personal affront. Here I was, a small-time developer, pouring my heart and soul into an application and these people had the gall to pirate from me?! They were taking money directly from my pocket!

I immediately added in a bunch of draconian DRM code and attempted to sabotage any person using an illegitimate or cracked copy. I should of been working on making my application better instead of trying to stop the inevitable. Not only that, but I was hurting my true customers will all these extra protections I was putting in.

After a long battle I realized I was fighting the tides and all this time wasted was for naught. I took out all the phone-home code except for the barebones license functions and never looked back.

link|flag
2  
So +1 that it’s almost +2. I wish more people would finally get that you simply can not protect your software against a determined attacker. – Bombe Feb 3 at 8:16
free obfuscator for .NET platform: foss.kharkov.ua/g1/projects/… – pirho Feb 3 at 8:20
3  
You have reached software protection nirvana: it's not about adding more protection, it's about focusing on the product and making it so good that people WANT to pay for it. And for those that pirate it, they would have never paid anyways so it's as if they never existed. – Arthur Chaparyan Feb 3 at 8:59
@Arthur Chaparyan, I agree. It took a long time to get here but I finally have seen the light. I went down the road of more restrictive protections and battling the crackers. I learned all I could about reverse engineering in an attempt to prevent my own. I finally figured out the right ideology – Simucal Feb 3 at 9:03
I think the key is to throw a poisoned bone to the software crackers (my see partial key verification answer) and to release new versions often to make sure that there are lots of non-working registration keys / keygens / cracks. This will put off most would-be pirates. Worked in my case. – Adrian Grigore Feb 3 at 9:55
show 6 more comments
vote up 7 vote down

You can't prevent people from cracking your software.

However, you can make them create cracks that will hurt your sales less. Keygenerators that can issue a valid registration code for your software are much worse than simple patches that remove registration incentives from your software. That's because a crack will work for one software version only, and will cease to work with the next software update you release. The keygenerator will continue to work until you change your registration key algorithm and that's something you don't want to do often because it will put off your honest clients.

So, if you are looking for a method to fight illegal keygenerators for your software and you do not want to use assymetric encryption because of the long registration codes this generates, you might have a look at Partial Key Verification.

Partial Key Verification makes sure that each illegal keygenerator works only for one particular release of your software. Basically what you do is to make sure that each release of your software only links with the code for checking SOME digits of the registration code. Which digits exactly is random, so crackers would have to reverse engineer many different versions of your software and combine all this into one keygenerator in order to release a keygenerator that works for all versions of your software.

If you release new software versions on a regular basis, this leads to numerous keygenerators spread on all kinds of software piracy archives which are not working anymore. Potential software pirates usually look for a crack or keygen for the latest version, so they will likely try a few of those and give up eventually.

I've used the Partial Key Verification in my (C++) newer shareware games and it has been very effective. Before we had plenty of problems with keygenerators which we could not fight. Afterewards there were lots of cracks and some few keygenerators that worked only for that particular version of the game, but no key generator that would work with all versions. We regularly released very minor updates of the game and to render all previously existing cracks useless.

There seems to be an open source .NET framework for Partial Key Verification, although I have not tried it.

link|flag
like the idea, you can also use different passwords for assymetric encryption in different releases. – Priyank Bolia Feb 3 at 9:45
vote up 4 vote down

Unfortunately you are not going to run away from this. Your best bet is to write your code in C and P/Invoke it.

There is a small catch-22, someone could just decompile your app to IL and kill any verification/activation code (e.g. the call to your C library). Remember that applications that are written in C are also reverse-engineered by the more persistent hackers (just look at how fast games are cracked these days). Nothing will protect your application. In the end it works a lot like your home, protect it well enough so that it is too much effort (spaghetti code would help here) and so that the assailant just moves onto your next door neighbor (competition :) ). Look at Vista, there must be 10 different ways to crack it.

There are packages out there that will encrypt your EXE and decrypt it when the user is allowed to use it, but once again, that is using a generic solution that has no doubt been cracked.

Activation and registration mechanisms are aimed at the 'average Joe:' people who don't have enough tech savvy to bypass it (or for that matter know that they can bypass it). Don't bother with crackers, they have far too much time on their hands.

link|flag
vote up 4 vote down

Broadly speaking, there are three groups of people out there. Those who will not buy your software and resort to cracks, or if they don't find any, not use your software at all. Don't expect to make any money from this group. They rely either on their own skills or on crackers (who tend to prioritize their time depending on your useful and how big your audience is. The more useful, the sooner a crack will be available).

The other is the group of legitimate users who will buy (pay for) your software, irrespective of what protection mechanism you use. Don't make life hard for your legitimate users by using an elaborate protection mechanism since they are going to pay for it in any case. A complex protection mechanism can easily spoil the user experience and you don't want this happening to this group. Personally, I'd vote against any hardware solution, which adds to the cost of your software.

Thirdly, a minority who will not resort to "unethical" cracking and will pay for your software because its features are protected by a licensing mechanism. You probably don't want to make it exceedingly easy for this group to circumvent your protection. However, all that effort you spend on protecting your software will pay back, depending on how big this group of people is. This entirely depends on the type of software you're building.

Given what you've said, if you think there is a large enough minority who can be pushed into buying your software, go ahead and implement some form of protection. Think about how much money you can make from this minority versus the time you spend working on the protection, or the amount you spend on a third party protection API/tool.

If you like to implement a solution of your own, using public-key cryptography is a good way (as opposed to symmetric algorithms) to prevent easy hacks. You could for instance digitally sign your license (serial no, or license file). The only way to get around this would then be to decompile, alter and recompile the code (which you could make harder using techniques such as those suggested in Simucal's answer).

link|flag
Using strong cryptography to protect/verify your licences is completely useless if somebody rips out the code that aborts the application if the licence doesn’t check out. :) – Bombe Feb 3 at 8:33
Agreed, but as I was saying, the protection isn't for those groups of users who will resort to using cracks (an assumption that I made will exist). – Mystic Feb 3 at 8:43
public-key cryptography = asymmetric cryptography. I think you meant symmetric. – Simucal Feb 3 at 9:29
Bummer, thanks for pointing it out, I'll edit that :) – Mystic Feb 3 at 10:18
vote up 4 vote down

You can..

Microsoft SLP Services offers the ability to help protect code without affecting the functionality of your applications, checkout this link

link|flag
pricing my friend, buying a licensing software from Microsoft is too costly for normal ISV – Priyank Bolia Feb 3 at 9:36
vote up 3 vote down

Is it really worth it? Every protection can be broken with sufficient determination. Consider your market, price of the product, amount of customers, etc.

If you want something more reliable then go down the path of hardware keys, but that's rather troublesome (for the user) and more expensive. Software solutions would be probably a waste of time and resources and the only thing they would give you is the false sense of 'securiry'.

Few more ideas (none is perfect, as there is no perfect one)

  • AntiDuplicate
  • Change the language, use the nice tricks that the authors of skype used
  • License server

And don't waste too much time on it, because the crackers have a lot of experience with the typical techniques and are few steps ahead of you. Unless you want to use a lot of resources, probably change the programming language (do the skype way).

link|flag
Don't forget that it is quite possible to attack the software part of the hardware lock. – Magnus Hoff Feb 3 at 8:07
Yes, that's true, the only real option would be to have the application partially implemented in hardware (some weird mix of software-VHDL application for example). This would also be crackable though... – unknown (google) Feb 3 at 8:14
What about dongles that implement a public/private key strategy. Only the private key of the dongle can decrypt the application and run it. – Simucal Feb 3 at 8:28
That's what the hardware key usually does. But you can either attack the dongle - clone it, or the software responsible for talking with the dongle (circumvent, disable, etc). – unknown (google) Feb 3 at 8:32
In my case it really WAS worth it. After I implemented Partial Key Verification and changed registration key scheme for an existing product, sales went up in significant manner. All software can be cracked, the question is just how high you raise the bar for the casual software pirate. – Adrian Grigore Feb 3 at 9:15
vote up 3 vote down
  • Use online update to block those unlicensed copies.

  • Verify serial number from different modules of your application and do not use a single function call to do the verification (so that crackers cannot bypass the verification easily).

  • Not only check serial number at startup, do the verification while saving data, do it every Friday evening, do it when user is idle ...

  • Verify application file check sum, store your security check sum in different places.

  • Don't go too far on these kind of tricks, make sure your application never crash/get into malfunction while verifying registration code.

  • Build a useful app for users is much more important than make a
    unbreakable binary for crackers.

link|flag
vote up 1 vote down

How to make sure that the application is not tampered with, and how to make sure that the registration mechanism can't be reverse engineered.

Both have the same very simple answer: don't hand out object code to untrusted parties, such as (apparently) your customers. Whether it's feasible to host the application on your machines only depends on what it does.

If it isn't a web app, maybe you can allow for ssh login with X forwarding to an application server (or remote desktop, I guess, for windows).

If you give object code to nerdy type persons and they think your program might be fun to crack, it will get cracked. No way around it.

If you don't believe me, point out a high-profile application that hasn't been cracked and pirated.

If you go with the hardware keys, it'll make production more expensive and your users are going to hate you for it. It's a real bitch to crawl around on the floor plugging and unplugging your 27 different USB thingies because software makers don't trust you (I imagine).

There are packages out there that will encrypt your EXE and decrypt it when the user is allowed to use it

Of course the way around it is to crack the "can-I-use-it" test so that it always returns true.

A nasty trick might be to use the byte values of the opcodes that perform the test somewhere else in the program in a dirty way that'll make the program crash with high probability unless the value is just right. It makes you linked to a particular architecture, though :-(

link|flag
doesn't a crash point is easy to debug, and override the code in .NET to bypass that check. Also how will you change the opcodes in .NET, can u elaborate on this? – Priyank Bolia Feb 3 at 9:00
Oh. I had C tricks in mind; say, take the address of the validation function, add up the 10 first bytes in that char array (cast the function pointer); pick any function f, and store [the address of f minus the previous sum] in fptr. Always call f as *(fptr + that sum). Precompute "that sum" – Jonas Kölker Feb 4 at 8:38
vote up 1 vote down

Apart from purchasing protection, you(or your developers) can learn to copy-protect.

These are ideas:

At first, try to write a program that writes itself to console. That's a famous problem. Primary purpose of this task is to practice writing self-referencing code.

Second, you need to develop a technology that will rewrite some code in a way dependable on other methods' IL.

You may write a virtual machine (yet in .Net). And put some code in there. Ultimately, the virtual machine runs another virtual machine which runs the code. That's for a part of rarely-called functions for not to slow the performance too much.

Rewrite some logic into C++/CLI, and mix managed code with unmanaged. This will harden the disassembling. In this case, do not forget to provide x64 binaries too.

link|flag
didn't get can you explain in detail. – Priyank Bolia Feb 4 at 15:54
vote up 1 vote down

See my answer, here, too:
http://stackoverflow.com/questions/651291/securing-a-net-application/651375#651375

link|flag
vote up 0 vote down

If its written in .NET and compiled to MSIL, it can be reflected. If security is a concern and obfuscation is to be avoided, then I recommend writing your app using a non-managed language, which is, by nature, harder to reverse engineer.

link|flag
vote up 0 vote down

.NET Reactor

.NET Reactor provides complete protection for your sensitive intellectual property by converting your .NET assemblies into unmanaged processes which cannot be understood as CIL, and which no existing tool can decompile. Hackers have no access to any intelligible form of your source.

Powerful and flexible, the .NET Reactor licensing features allow you to enforce your license conditions and protect your revenue stream by using hardware and software locks. The license manager can build trial or permanent licenses, in a matter of seconds. A fully documented software development kit (SDK), complete with examples, allows you to call the licensing system directly from your code, allowing you to create custom extensions to the licensing system.

I highly recommend it and it is also very cheap compared to other products.

link|flag
I tried to contact those guys with some question, I had about their product, but they never replied. Did your tried their product. I have gone with smart assembly and both their product and support is very good. But as I already said in the question obfuscation is one way, but not full proof. – Priyank Bolia Feb 3 at 16:20
I had some issues with their product earlier and then I asked some question regarding high resolution icons in groups.google.se/group/net-reactor-users and I got a reply and a fix, but now it seems like they are hard to get hold of. To bad - it's a great product and I'm still using it – Anders Feb 3 at 20:22
vote up 0 vote down

Just make a good app and code a simple protection system. Doesn't matter the protection you choose, it will be reversed... so don't waste too much time/money.

link|flag
vote up 0 vote down

There's Salamander, which is a native .NET compiler and linker from Remotesoft that can deploy applications without the .NET framework. I don't know how well it lives up to its claims.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.