vote up 3 vote down star

Hey All,

Im currently doing some research in how to best protect my source code so that no external parties can view and use my code.

From browsing the web a few ideas have come to mind i.e

1) Publish website into a DLL

2) Code obfuscator

3) 3rd Party

But none i find are really explained that well or shown in detail how to achieve this. Anyone here who could shed some more light on this topic ?

Thanks in advance

flag

15 Answers

vote up 3 vote down

It might put you at ease to know that you don't actually publish your .cs/.vb files with the website when you publish as a dll. I think this is the easiest road block to put in place.

I realize that you can still get code out of the DLLs but the source files themselves don't need to be there.

Convert your web project into a Web Application and build it. The output will be a dll. Push this along with all the media files (aspx, gif, png, etc.) out and your source should be hidden from less-than-diligent people.

link|flag
So where would the code for the .cs/.vb be then ? Btw you are referring to option 1 right where we publish the site into a dll – Velnias Jan 5 at 14:28
That does depend on how you publish the website, if you just use the "Publish"-tool it will upload aspx, aspx.cs etc. And getting data out from a DLL in C# takes less than 1 minute, so obfuscating it if he feels less secure is a good path. – Filip Ekberg Jan 5 at 14:28
The code goes into the dll so it doens't need to be included when you publish this way. As others have mentioned, yes, it can be partially pulled out if the dll. – Michael Haren Jan 5 at 15:16
vote up 3 vote down

Read here and here for instructions on how to deploy as a binary

Read here for a good Obfuscator

I don't know what you mean about "3d party" but the above links will help you protect the code.

link|flag
vote up 0 vote down

You are going down the right track. THe DLL is a big help, but it can be de-compilied to at least get some.

Using an Obfuscator like Dotfuscator is a good extra step. This FAQ is a good starting point to understanding Obfuscators

The key is to identify what you are looking at doing. If you are deploying the code, it is going to be farily hard to stop someone from calling methods inside the code. If you are just looking to prevent them from getting the actual source, that is easier and obfuscation should work.

link|flag
vote up 0 vote down

I would always choose to pre compile the website into a DLL and not include the code online. This means that anonymous users will not have access to your code.

However if you are concerned about people with admin access to the server it would be possible for them to disassemble your binaries into something almost readable.

link|flag
vote up 0 vote down

I would just be looking to prevent them from getting the actual source code.

link|flag
Then just follow my instructions in the previous post. :) – Filip Ekberg Jan 5 at 14:30
vote up 1 vote down

There is a way to precompile all aspx/ascx files in an ASP.NET web site or project using a Visual Studio project template:

Read here on ScottGu's blog: VS 2008 Web Deployment Project Support Released

Compiling the deployment project a single assembly is created for all your aspx/ascx files.

If you want to really hide (make unreadable) your source code, you should use a professional obfuscator software.

link|flag
vote up 1 vote down

So basically my two options would be

1) Use a payable Obfuscator i.e http://www.smartassembly.com/

2) Compiling my website project into a DLL of sorts ?

link|flag
vote up 0 vote down

Maybe I'm wrong, but I'm not convinced that IIS will serve any files from the bin folder (it doesn't for me anyway, and I assume this is by design in the same way that you cannot donwload web.config - it also won't even list the directory contents). If this is correct, then I'm not convinced there's a way for a hacker to obtain the dll in the first place, unless they can get filesystem access to the server.

If you follow the advice given above about compiling into a single dll, I don't think you need an obfuscator (unless you're concerned about people WITH filesystem access, in which case I think you have other problems!)

link|flag
vote up 0 vote down

Yes I think the obfuscator is a step I dont need but im researching it anyway.

Regarding the DLL :

Im not 100% how i can go from

default.aspx default.aspx.cs etc

to a single DLL in the root folder, and the site working as before ?

How can this be achieved ?

link|flag
vote up 8 vote down

In my experience people who are obfuscating their code don’t produce code that is worth the trouble.

link|flag
vote up 0 vote down

Which version of VS are you using? In VS2005 SP1 there is a new project type called Web Deployment. Right click on the website name in the solution explorer, and you should see an option "Add Web Deployment Project" - this adds a new project to your solution that will create a single DLL and alter the aspx pages to reference it.

When you build the solitution, it creates in the web deployment project folder a version of the site with the single dll. Copy this to the server, set up your db and any file system permissions (e.g. for uploads etc.) and you're away.

link|flag
I completed the step "Add Web Deployment Project" Which did create a new project to my solution. But it didnt create a DLL or the ASPX pages. Just test_deploy.wdproj, test.sln file. – Velnias Jan 5 at 15:56
vote up 0 vote down

When you publish your project as binary, the compiler will create DLL(s) in the bin folder and all pages you have are also created, but not with code in, just one line that says its a marker file. So when the user browse your site they will browse the pages as usual. Your pages will then on the serverside point to the right code in the dll

link|flag
How would I publish my file as binary ? – Velnias Jan 5 at 15:26
vote up 0 vote down

AH cool so for example

Before I woudl have

Default.aspx (20 Lines) Default.aspx.cs (50 Lines)

After I would have

Default.aspx (1 Line) Default.aspx.cs (1 Line) project.dll

link|flag
Yes. Thats right. – Stefan Jan 5 at 15:16
The textline in those dummypages reads as follow: "This is a marker file generated by the precompilation tool, and should not be deleted!" – Stefan Jan 5 at 15:20
Thats awesome just what I want. So the way to do this using the VS tool of adding "Web Deployment Project" – Velnias Jan 5 at 15:20
vote up 0 vote down

Regarding "Which version of VS are you using? In VS2005 SP1 there is a new project type called Web Deployment. Right click on the website name in the solution explorer, and you should see an option "Add Web Deployment Project" - this adds a new project to your solution that will create a single DLL and alter the aspx pages to reference it. "

I have Visual Studio 2005 but dont see the option when I right click to "Add Web Deployment Project"...damn :P Ill have a look for service pack 1

link|flag
Dont ask questions as "Answers". Edit your first question if you want more information, and if you want to ask something about an answer made, use the comment feature. Its not a forum so all posts are not sorted by date/time and it can be hard to read after a while. – Stefan Jan 5 at 15:26
Ah ok sorry dude, first time using this forum I will do this from now on. – Velnias Jan 5 at 15:29
vote up 0 vote down

After you publish as a DLL, don't forget to put it (and the other server-side files like Web.config) in a path that isn't served by IIS.

link|flag

Your Answer

Get an OpenID
or

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