Deny access to directory in IIS 6.0

核能气质少年 提交于 2020-01-25 00:31:05

问题


How can I deny access to particular directory in IIS. In Apache I could just add .htaccess file:

Order allow,deny
Deny from all

to Logs or cache directory and nobody will allowed to see any content in that directory.

However when I add Web.config:

<?xml version="1.0"?>
<configuration>

    <system.web>
      <authorization>        
        <deny users="*"/>
      </authorization>
    </system.web>

</configuration>

it works only for files handled by asp and doesn't work for i.e. log.txt.

I don't have access to IIS server, I can only add and change files.

Thanks in advance for help.


回答1:


In IIS6 when you open folder properties you will see a checkbox labeled "Read". Try unsettling it




回答2:


If you don't have access to IIS, do you at least have access to the file system? As in, can you set security on folders?

If so, go to the security tab on the particular folder and remove all rights to whatever guest account the site is running under.

Seeing as the only .net file are handled by the .net process and security model under IIS 6 (which you learned), I don't see what else you can do.

One other possibility - that may not work in your application - you could move all non .net files that require permission into the /App_Data/ folder. .Net does seem to just into the pipeline and prevent these files from being loaded. You could stream them instead.

FYI - if you DID have access to IIS this is a good article on how to restrict access to non .net files:

http://quickstarts.asp.net/QuickStartv20/aspnet/doc/tipstricks/default.aspx#securingnonaspnetcontent




回答3:


Go to the folder properties in IIS Manager -> Directory Security tab -> Authentication and access control. Uncheck 'Anonimous access' checkbox and disable all the authentication methods below.

There is no built-in file-based access management like htaccess. This can be achieved using third-party ISAPI modules like Helicon Ape



来源:https://stackoverflow.com/questions/3101371/deny-access-to-directory-in-iis-6-0

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!