Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

As many of you know there is no copyright law in some countries. I support copyrights myself, but in Iran:
Windows Server 2008 =1$
king 2008 = 14$
MS SQL Server 2008 =50 Cents
...

How can I prevent my code being decompiled in 30 seconds. I have seen lot's of videos which learn how to decompile in 30 seconds. What is best obfuscator program(.Net) money can buy?
Does it have any automated anti obfuscation program?

share|improve this question
2  
why downvotes? Im a Developer too.I love copyrights more than you all. In Iran only 5% of programs are sold out by companies, because they think population of hackers is more than developers, programmers, Testers, .... – Behrooz Jan 1 '10 at 12:35
3  
You don't need to put exclamation marks here. Some people will find it rude. – jpartogi Jan 1 '10 at 12:35
1  
@jpartogi: ok.I won't do it any more. – Behrooz Jan 1 '10 at 12:38
1  
I don't know about other folks, but I work for a large US company. It is illegal for us to sell software (or anything) to Iranians (as well as Cubans and North Koreans). – Tangurena Jan 1 '10 at 18:25
1  
@tangurena:I know that(Cry Cry Cry Cry Cry). – Behrooz Jan 1 '10 at 20:55
show 2 more comments

closed as not constructive by Conrad Frix, Mario, J. Steen, Jan Hančič, Anand Jan 11 at 11:08

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

12 Answers

up vote 29 down vote accepted

Have a look at

Also

How-To-Select an Obfuscation Tool for .NET

share|improve this answer
6  
Pessimists will insist that no obfuscator is good enough; but they definately make the job much more difficult--provided there is a decent licensing system in place. – STW Jan 1 '10 at 17:40
Best answer after a couple months. thanks, +1. – Behrooz Feb 8 '11 at 15:25
1  
Of course there’s also Rummage... shameless plug :) – Timwi Oct 10 '12 at 15:23

If Microsoft cannot solve this problem, then nobody can. No matter how you obfuscate it, it will be cracked and there is nothing you can do about it.

You either don't develop software for this market or make it free and figure out other income stream.

share|improve this answer
I know that. I only need a way to sell more than 1 copy. – Behrooz Jan 1 '10 at 12:37
4  
This is not true, i doubt if the pirates we're talking about are the ones who actually crack windows. They just download it and burn it. So obfuscation is enough if the software is targeted for iranian market. And im sure there are people there who can break it, but at least you make their lives harder. – Henri Jan 1 '10 at 12:44
1  
"make it free" ????? no one thinks : "Is it free?", "Hey its an opensource.", "let's donate 1Cent to that company.", "what is the company's name?" – Behrooz Jan 1 '10 at 12:45
3  
Microsoft actually doesn't seem to try very hard to protect their code -- other companies do a much better job. – RickNZ Jan 1 '10 at 12:52

I would suggest you:

  1. Xenocode .NET Obfuscator 2010 ( or Xenocode Postbuild )
  2. Dotfuscator
  3. Redgate Smartassembly

I used the first and works flawlessly.

share|improve this answer
"Xenocode", it is just like a toy in the forum i wrote in a comment for lubos hasko. – Behrooz Jan 1 '10 at 12:55
uhm give it a try – Salv0 Jan 1 '10 at 18:00

Yes, I have been a programmer since the last 5 years mostly working on Microsoft technologies. During all these years I have got chances to develop several applications both independently as well as in team. And every time,I have realized the need to get your code secured from preying eyes.Why? -the very first reason should be, whenever you are writing a program for some client, he insists on its security, his experience, investment must needs to be protected. So, what is the solution? Definitely Obfuscation. People say that obfuscation does not provide 100% code protection, it still can be reverse engineered. True, but my answer here is that won't you lock your home while you are away! Thieves still can enter, but it discourages common preying eyes. And as far as I believe most of our programs are used by common people and hackers least care to break these applications. This way still you can relax!

Ok, now coming to the technicalities, I have implemented obfuscation for more than five applications, small to mid-sized, with multiple assemblies. So, definitely I have tried various obfuscation tools available in the market both free ones and paid. The list mentioned by '-Astander' above are few. You can google it to find numerous more. So, what is the best? I will say the choice will vary. I settled down on Skater Obfuscator. I have used it successfully in many of my applications. Just recently I implemented it on a WPF application. Before choosing Skater obfuscator, I tried other tools too. But what I found is obfuscators are still novice handling XAML applications and most of the time the resultant application crashes. To avoid this, you can customize your obfuscation level by going to the options and setting your priorities. In my case, the application was crashing when I was trying to encrypt the Private Members. So I went on customizing it till I achieved a good level of obfuscation with a working application. This experimentation continued will almost all evaluation versions of obfuscators, but I finally using Skater Obfuscator, I could successfully implement name encryption for Public members/classes/methods with string encryption and control flow. Its easy customization features give you a good control over implementing obfuscation.

But you definitely need to make your own experiments to get your favorite obfuscation tool!

share|improve this answer

Obfuscation won't prevent your code from being copied or decompiled. It makes it more difficult to make changes to your code or to understand exactly how it works, but is that what you're really trying to prevent?

share|improve this answer
I have lots of ways to prevent copying. but they cannot work if the hacker knows how they work. – Behrooz Jan 1 '10 at 12:53
then those are bad ways – shylent Jan 1 '10 at 17:40
they are not bad.they become bad when a hacker knows how they work. I promise you cannot overcome any of them.but if you have the code, you compile my code in a few seconds.But i think you will replace "JZ" and "JNZ". – Behrooz Jan 1 '10 at 18:21
I agree with shylent. There's a basic principle of security, Kerckhoffs's Principle(en.wikipedia.org/wiki/Kerckhoffs's_principle) that says you should reduce secrets to the minimum that is necessary to ensure your security. In other words, assume the enemy knows the system. So in cryptography, an attacker can know the algorithm you are using and can have the source code for your encryption software, and you are still safe. All you need to keep secret is the key. Security through obscurity is no security at all. – Concrete Gannet Sep 11 '12 at 5:16
1  
Being pragmatic, having to figure out obfuscated code to get around copy protections will deter less determined attackers. It's copy protection, the point isn't make make a 100% secure system, it's to mitigate attacks. – jcmcbeth Nov 28 '12 at 16:08

I've used SmartAssembly in the past and found it to be pretty decent at what it does. I'm not sure this route will be very effective in hindering hackers circumventing your copy protection, however.

share|improve this answer
1  
I used SmartAssembly on a .NET 3.5 project. Red Gate acquired it since then. I purchased the latest SA version recently while upgrading my project to .NET 4.5. I found a bug in SA that causes it to crash. I provided Red Gate with a repro and they replied "I'm hopeful that a release may be available with a couple of weeks, however there's no full time development team currently working on Smartassembly; the majority are deployed on other tools." So it looks like development on SmartAssembly is dead. – HappyNomad Nov 2 '12 at 1:21

You are solving the wrong problem. This is piracy, not IP theft. Nobody is going to make the effort to decompile your program when a running version of your program costs a dollar. They'll have the exact same problem you have, can't earn a living. Solving a piracy problem requires a gun boat.

share|improve this answer
1  
It costs a dollar because everyone copies everything he likes.1$ is the price of a CD not a program+1CD. – Behrooz Jan 1 '10 at 18:17
Okay, zero dollars then. It doesn't change the logic. – Hans Passant Jan 1 '10 at 18:30
Solving a piracy problem indeed requires a gunboat. And you are right that copyright violations are different from developing derivative works. But both are properly called "IP theft", not "piracy". – Ben Voigt Sep 6 '11 at 4:04

Having your software piece cracked does not mean fiasco to your business, it does mean just the opposite - your sotware is demanded.

The fact, that 90% of people are using your software for free should not disappoint you. Consider them as a free user base you gain, which is important to your software marketing.

You can even consider some conversion rate from pirated to licensed users in your marketing plan.

share|improve this answer

There isn't such thing as 'best obfuscator'. And it's certainly not a matter of money, i.e., it doesn't mean that only lot of cash can provide true protection.

Since a lot of guys are talking about products, and name products, I'll tell you about my experience.

I have tested about 10 obfuscators with my projects (scientific class libraries, lots of generics, generic interfaces, etc...) before I buy one and many of the expensive and famous obfuscators failed:

  • Dotfuscator (found a serious bug - they couldn't do anything to fix it, though I sent them some source files to reproduce the bug)
  • CodeVeil (crashed or produced assemblies that crashed at run time, and pretty damn slow!)
  • XenoCode (crashed or produced assemblies that crashed at run time, not so often as CodeVeil did!)
  • smartassembly (crashed; could not even produce assemblies)
  • ...

I didn't have the opportunity to test some other products (like one from Arxan) because the price they asked was ridiculous (the price was $15000, initially, and dropped to half when I told them I was not interested - they had two salesmen keep sending emails at me; guess who was going to pay for their bills...).

Finally I purchased two of the obfuscators that were at the bottom of my list and cost less than $400 (each). I didn't believe they worth of any value because of their small cost. I realize now that they were simply cost-effective solutions. They didn't crash at all, they did what they were supposed to do fast (unlike CodeVeil, which is so slow...) and save me a lot of money...

share|improve this answer
2  
Could you name the two obfuscators you finally bought? – wei Dec 20 '11 at 15:48
relevant: xkcd.com/979 – Katbyte Mar 22 at 22:22

Here there is a comparison of .Net Obfuscators

You may also consider a hardware solution such as using USB Dongles against copying or else.

For years I thought that Microsoft was not against pirated software. I thought that they did not want to loose microsoft users in countries like Iran to linux. But now they prevent it if user enables automatic updates.

Is the application you want to sell concerned with internet? If so add your application a function which checks if the license key is valid from your web site. But do not add this as a single method. This can be disabled with reverse engineering. You can add this function in addition to obfuscating.

share|improve this answer
virtual devices solve the problem. – Behrooz Jan 1 '10 at 18:18
Some generate id's specific to that hardware (usb device) how do they solve that problem? – JCasso Jan 1 '10 at 19:04
I have some programs witch make everything(from sector 0 cylinder 0 Bit 0 to ∞) as you like. – Behrooz Jan 10 '10 at 15:12
not any link found for comparison of .Net Obfuscators – Irfan Dec 4 '12 at 13:30

For at least 45 seconds of security you can try a .NET linker/compiler:

http://www.remotesoft.com/linker/

share|improve this answer

Continue please:
Microsoft Visual Studio 2010 Professional = 1$ + 75c
3D Studio Max 2009 = 1$
Recently i write a font editing program using python and wxGlad, that takes 7 months. now want to distribute it but I'm pretty sure it will be cracked by Emperor Darya or others in less than 30s. so decide to change its license to Freeware.

The Cyber Society of Iran is not related to Copyright law. there is many copyright conventions accepted by government (Only for Iranian developers). but not applied by users at all.

after designing and applying security system to your code, see:

قانون حمایت از حقوق مؤلفین :توسعه‌دهندگان نرم‌افزار

to find a suitable license system for your product. but don't expect foreign developers to be supported by law in Iran: this is a "Tahrim" problem! :-)

share|improve this answer

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