vote up 1 vote down star

If I use an URL like http://mysite/myfolder/myfile.dll, I get a dialog "Do you want to open or save this file". Of course, I don't want people to be able to download and disassembly our dll's. How can I deny people accessing such files directly ?

flag

4 Answers

vote up 0 vote down check

Denying all dll's is drastic in an asp.net site, as Silverlight etc use client dll's that need to be available for download by the client browser.

You could use IIS Management Console or Management API's to disable authentication on the dll's file or directory.

Simply uncheck all authentication options and access will be denied.

link|flag
vote up 4 vote down

Usually this is disallowed by default. If you go into the IIS manager and edit the website, you need to uncheck 'script source access.' DLL should also be on the list of forbidden file extensions.

link|flag
vote up 1 vote down

The short answer is that there should be no files which you don't want to serve underneath the web root.

I don't personally know IIS 6 or 7, but under Apache, a directory is designated as the web root, e.g. \site\htdocs, and nothing above it is accessible to the outside. If you keep your DLL files out of that hierarchy, then they are inaccessible.

link|flag
Unfortunately, this is not quite compatible with the way ASP.NET works. (but it wasn't me who downvoted you) – DrJokepu Jan 6 at 13:13
@DrJopeku - that doesn't stop juliannicholls's "short answer" sentence from being 100% on the money ;-) – Graham Lee Jan 6 at 14:06
@graham lee - not true in asp.net – Shawn Jan 7 at 19:29
vote up 0 vote down

Set appropriate windows file security and access rights.

E.g. when you are using asp.net you should deny access to the .dll for all users except the ASPNET account.

!The IUSR_xxx account should have no rights to your .dll!

link|flag

Your Answer

Get an OpenID
or

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