0

Possible Duplicates:
What is the best .NET obfuscator on the market?
Best .NET obfuscation tools/strategy

Hi there,

I'm ending my development of a small business application, using NET 4.0.

I would like to know which tool are you using to prevent your code to be decompiled/stolen.

I know that exists a few tools in the market, but I would like to know the best ones, keeping in mind that I'm using reflection to access properties and some methods

Thanks

Community
  • 1
  • 1
muek
  • 1,080
  • 2
  • 16
  • 36
  • 1
    duplicate: http://stackoverflow.com/questions/337134/what-is-the-best-net-obfuscator-on-the-market http://stackoverflow.com/questions/2525/best-net-obfuscation-tools-strategy http://stackoverflow.com/questions/805549/free-obfuscation-tools-for-net – Mauricio Scheffer Oct 01 '10 at 00:10

2 Answers2

1

here is no such possibility. Dotfuscated and packed application can be unpacked and undotfuscated by professional, and it can be reversed. Any program can be hacked, any .net program can be opened, because for that normal work needed il code, which can be easily opened.

(Translated from russian by google)

  • I agree with you, that any program can be hacked, but there a few things that you can make that would eliminate 70% of hackers – muek Oct 05 '10 at 10:48
0

You can use Visual Studio's Dotfuscator.

Gustavo Puma
  • 993
  • 12
  • 27