36
votes
26answers
4k views
Best .NET obfuscation tools/strategy
My product is both ASP.NET, Windows forms app and Windows service.
95% of code is .NET (VB if you must know).
For IP reasons, I need to obfuscate the code. I am using an old dotfuscator (over 5 …
21
votes
14answers
1k views
Best way to obfuscate an e-mail address on a website?
Hello all. I've spent the past few days working on updating my personal website. The URL of my personal website is (my first name).(my last name).com, as my last name is rather unusual, and I was …
17
votes
13answers
488 views
techniques for obscuring sensitive strings in C++
I need to store sensitive information (a symmetric encryption key that I want to keep private) in my C++ application. The simple approach is to do this:
std::string myKey = …
15
votes
17answers
4k views
How do I protect python code?
I am developing a piece of software in python that will be distributed to my employer's customers. My employer wants to limit the usage of the software with a time restricted license file.
If we …
14
votes
12answers
1k views
Should I be worried about obfuscating my .NET code?
I'm sure many readers on SO have used Lutz Roeder's .NET reflector to decompile their .NET code.
I was amazed just how accurately our source code could be recontructed from our compiled assemblies.
…
12
votes
9answers
314 views
Does e-mail obfuscation really make automatic harvesting harder?
Many users and forum programs in attempt to make automatic e-mail address harversting harder conseal them via obfuscation - @ is replaced with "at" and . is replaced with "dot", so
…
12
votes
9answers
748 views
How effective is obfuscation?
A different question, i.e. Best .NET obfuscation tools/strategy, asks whether obfuscation is easy to implement using tools.
My question though is, is obfuscation effective? In a comment replying to …
11
votes
12answers
402 views
Should I be obfuscating database IDs from my users?
I'm being told that I shouldn't be using database IDs directly in HTML code in web applications.
Currently I use the IDs on things like table row IDs (tableRow-454 where 454 is the ID of the row in …
11
votes
3answers
438 views
Three arguments to main, and other obfuscating tricks.
The following obfuscated C code prints the words to the "12 days of Xmas".
I was trying to puzzle out how it works. I'm basically completely lost. What is the significance of the three untyped …
11
votes
7answers
817 views
Software protection for small vendors
This is a problem we all have to consider at some point.
After many years and many approaches I tend to agree in general with the staterment:
"For any protected software used by more than a few …
10
votes
17answers
480 views
Real world uses for obfuscation
For what purposes would you want to obfuscate your code? I have not run into any real purposes other than participating in contests, but I am sure there must be some intelligent and useful reasons …
10
votes
11answers
713 views
Why does Bing obfuscate their JavaScript?
I was surfing the web, as usual and I wanted to take a look at Bing's source code because I was curious and wanted to know what they were using to make their image fade in. I was surprised by what …
10
votes
20answers
870 views
Making email addresses safe from bots on a webpage?
When placing email addresses on a webpage do you place them as text like this:
joe.somebody@company.com
or use a clever trick to try and fool the email address harvester bots? For example:
HTML …
10
votes
9answers
2k views
What do you use to protect your .NET code from reverse engineering?
For a while we were using a tool called CodeVeil. I'm just wondering if there are better alternatives out there.
Edit: Before more people misunderstand the question, I'm aware that a determined …
9
votes
6answers
981 views
Securing a .NET Application [closed]
Duplicate:
Protecting .NET Code from Reverse Engineering
We've recently released a small application and this weekend I found a cracked version of it on Piratebay that had the registration …
