Ask a Question related to ASP.NET Security, Design and Development.
-
Isabella #1
how to secure asp.net code?
I am writing a web site for my client using asp.net. But I don't want him to
able to read the code and reuse it in future. How can I protect the code
and still give him a copy? Any idea? just wild guess like compiling the
project into .exe, component or dll. I have no idea. Please advise!
Isabella
Isabella Guest
-
code for basic registration to secure page
hello there I know that this already exists, I just need to find the snippet or formated codes and where they are located. thanks -
Secure the code of a published WS?
Hello. When I initially published a WS that I developed using VS there was a bug in the code. In a client app that I wrote to test the WS I added... -
Secure PDF's merged into 1 document from 2 different Secure Files, possible?
I have multiple Secured PDF files that I have created. There is a possibility that my end user will need to merge multiple PDF files into 1 main PDF,... -
secure intranet site with non secure sites?
I log into a domain open an secure intranet site and then when I go to yahoo.com it messes up my secure intranet site that I have open. Cant... -
"Microsoft must deliver 'secure environments' not tools to write 'secure code'" : draft article
Hello Please see bellow the final draft of an article soon to be published. I would appreciate your comments and corrections of anything that I... -
Randy Charles Morin #2
Re: how to secure asp.net code?
obfuscation
[url]http://www.devx.com/SummitDays/Article/11351[/url]
Randy
[url]http://www.kbcafe.com[/url]
"Isabella" <isabella_lau@hotmail.com> wrote in message news:<e9jAvBRsDHA.2380@TK2MSFTNGP09.phx.gbl>...> I am writing a web site for my client using asp.net. But I don't want him to
> able to read the code and reuse it in future. How can I protect the code
> and still give him a copy? Any idea? just wild guess like compiling the
> project into .exe, component or dll. I have no idea. Please advise!
>
> IsabellaRandy Charles Morin Guest
-
Anton Sommer #3
Re: how to secure asp.net code?
Hello Randy,
I am curious how an asp.net user can access the managed code from the web
anyway.
Thank you
Anton
Anton Sommer Guest
-
Michael Ames #4
Re: how to secure asp.net code?
Isabella,
Unlike older versions of ASP, with ASP.NET you do not have to include the
..vb source code files when you deploy the web application. The vb code will
be compiled into a dll, which will reside in the /bin subdirectory on your
site.
However, it is fairly easy for someone to decompile a .NET dll into its
source code. Obfiscation, which was mentioned by the other responder, will
make the decompiled code more or less useless.
So depending on how tech savvy you think this customer is, the fact that the
..vb files are already compiled into a DLL might be enough. But if you think
they're likely to attempt to decompile, you should look into obfuscation.
-Michael
"Isabella" <isabella_lau@hotmail.com> wrote in message
news:e9jAvBRsDHA.2380@TK2MSFTNGP09.phx.gbl...to> I am writing a web site for my client using asp.net. But I don't want him> able to read the code and reuse it in future. How can I protect the code
> and still give him a copy? Any idea? just wild guess like compiling the
> project into .exe, component or dll. I have no idea. Please advise!
>
> Isabella
>
>
Michael Ames Guest
-
Randy Charles Morin #5
Re: how to secure asp.net code?
By default, you can't.
Randy
[url]http://www.kbcafe.com[/url]
"Anton Sommer" <anton.schamy_no_spam_@arcor.de> wrote in message news:<bprsov$6oq$03$1@news.t-online.com>...> Hello Randy,
>
> I am curious how an asp.net user can access the managed code from the web
> anyway.
>
>
> Thank you
>
>
> AntonRandy Charles Morin Guest



Reply With Quote

