How i can protect my C# app Reflector (Red Gate) and other disassemblers ?
-
Hi. I'm using Visual Studio 2008.I'm writing apps under C#. Some disassemblers (like Reflector) can see my source code. I searching in internet.There are so many app - anti disassembly.And they not free. How i can protect my C# app ? Thanks.
We are haven't bug,just temporarily undecided problems.
-
Hi. I'm using Visual Studio 2008.I'm writing apps under C#. Some disassemblers (like Reflector) can see my source code. I searching in internet.There are so many app - anti disassembly.And they not free. How i can protect my C# app ? Thanks.
We are haven't bug,just temporarily undecided problems.
You need an obstifucator, there is one that comes free with Visual Studio called "Dotfuscticator". Different obstifucators have different levels of security, so the free ones might not be the best. You'll need to do your research to find out which provides the level of security you are happy with.
Dalek Dave: There are many words that some find offensive, Homosexuality, Alcoholism, Religion, Visual Basic, Manchester United, Butter.
-
Hi. I'm using Visual Studio 2008.I'm writing apps under C#. Some disassemblers (like Reflector) can see my source code. I searching in internet.There are so many app - anti disassembly.And they not free. How i can protect my C# app ? Thanks.
We are haven't bug,just temporarily undecided problems.
-
Hi. I'm using Visual Studio 2008.I'm writing apps under C#. Some disassemblers (like Reflector) can see my source code. I searching in internet.There are so many app - anti disassembly.And they not free. How i can protect my C# app ? Thanks.
We are haven't bug,just temporarily undecided problems.
Thanks keefb and Abhinav. I was try Dotfuscator. It only renaming methods , fields name.But ,i think , after that can understand. Any ideas? Thanks.
We are haven't bug,just temporarily undecided problems.
-
Hi. I'm using Visual Studio 2008.I'm writing apps under C#. Some disassemblers (like Reflector) can see my source code. I searching in internet.There are so many app - anti disassembly.And they not free. How i can protect my C# app ? Thanks.
We are haven't bug,just temporarily undecided problems.
I haven't ever seen any really processional free obfuscator.Dotfuscator community edition cannot protect your code against advanced hackers, EazFuscator doesn't support reflection.Sorry if I dissappoint you but there's no any free obfuscators that can be used for commercial projects. X| [EDIT] Some of the soft. companies are using licence managers for their Win Forms/WPF components components based on unmanaged code, because it's mush more harder for disassembling compared with .NET or Java code, but even that their products are cracked by some hackers.
Life is a stage and we are all actors!
modified on Tuesday, February 16, 2010 9:25 AM
-
Hi. I'm using Visual Studio 2008.I'm writing apps under C#. Some disassemblers (like Reflector) can see my source code. I searching in internet.There are so many app - anti disassembly.And they not free. How i can protect my C# app ? Thanks.
We are haven't bug,just temporarily undecided problems.
open source is good, just in my opinion. why not share~ aha~
-
open source is good, just in my opinion. why not share~ aha~
danberlove wrote:
open source is good
Agreed, except some people need to earn a living which is virtually impossible off donations from a few thoughful users out of the n that will expect support. Most people don't have the knowledge or desire to disassemble your application. If it's a good application that they have the need for, so long as the price/licence is fair they will purchase it. The few that may attempt to rip you off will normally only do so if you are overcharging or have an unfair licence. There's always the odd ones but they will do it no matter what you do if there is the demand for your work. [My opinion only!]
Dave
Tip: Passing values between objects using events (C#) BTW, in software, hope and pray is not a viable strategy. (Luc Pattyn)
Why are you using VB6? Do you hate yourself? (Christian Graus) -
Hi. I'm using Visual Studio 2008.I'm writing apps under C#. Some disassemblers (like Reflector) can see my source code. I searching in internet.There are so many app - anti disassembly.And they not free. How i can protect my C# app ? Thanks.
We are haven't bug,just temporarily undecided problems.
See NTcore's Phoenix protector, it's pretty good and free However, before you do that, you should realize that it is fundamentally impossible to completely hide your code (ok you can, but then your CPU does not know what to execute either so your program wouldn't be useful anyway) So no matter what you do, people will be able to "borrow" (and/or edit) your code. But with obfuscation, the script kiddies and other noobs may give up. That's all. If you're worried about industrial espionage, your only choice is to never release your program.