subscribe to the RSS Feed

Saturday, May 19, 2012

Internet Information Services 6.0: How to configure uploads for IIS Web applications

By TechSupport


SUPPORT PROBLEM: How to configure uploads for IIS Web applications

Applications Supported:

COPYRIGHT NOTICE: (c) 2007 Microsoft Corporation. All rights reserved.

SUPPORT SOLUTION:

This article describes how to configure Internet Information Services (IIS) to allow more-secure file uploads through a Web application.

Many Web applications such as Content Management Systems require supporting file uploads to the Web server that uses the Web application. Allowing files to be uploaded to the Web server that uses the Web application has security ramifications for the server, and you must understand all the implications for allowing this. This article guides you through securing your Web application uploads through IIS configuration. If your Web application has an automated installer, you can also incorporate the configuration in this article into your installer.

Note Some Web applications use databases to manage uploaded content. However, this article focuses on applications that use the file system.

Create a separate folder for your uploaded content and change the NTFS file permissions on the upload folder

By doing this, you can configure the behavior of uploaded content differently from the rest of your Web application. Grant the upload folder Read and Write permissions for the IIS worker process identity. For IIS 6.0 in Windows Server 2003, you can use the IIS_WPG user group for this. For IIS 7.0 and earlier, you can use the IIS_IUSRS user group.

For more information about IIS_WPG, visit the following Microsoft Web page:

Configuring Application Pool Identity in IIS 6.0
(http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/12a3d96c-65ea-4210-96ad-86a801f6a88c.mspx?mfr=true)

For more information about IIS_ISURS, visit the following Microsoft Web page:

Understanding the Built-In User and Group Accounts in IIS 7.0
(http://learn.iis.net/page.aspx/140/understanding-the-built-in-user-and-group-accounts-in-iis-70/)

For more information about how to help secure files with NTFS permissions, visit the following Microsoft Web page:

Securing Files with NTFS Permissions
(http://technet.microsoft.com/en-us/library/cc757422(WS.10).aspx)
Note In some cases, such as when impersonation is used, you would need to give Write access for the authenticated user context as well. Disallow Script Permissions on the upload folder

Uploaded content for most Web applications are static content, such as images and documents. Uploaded content is not meant to be content that can be run, such as scripts or executable files. Therefore, it is important not to grant Script Permissions on this folder. Otherwise, users who can upload content can execute scripts in the context of your worker process identity on the server. If your Web application has logic to restrict uploads by file name extensions, you should use this restriction as a secondary measure. You should still make sure that your application’s upload directory has script permissions disabled.

To disable script permissions in IIS Manager User Interface (inetmgr) in IIS 5.x and 6.0, follow these steps:
Click Start, and then click Run.Type inetmgr in the Open box, and then click OK. In the tree view in the navigation pane, select the path of the upload directory of your Web application.Right-click this path, and then click Properties.Click the Directory tab, and then select None in the Execute Permissions list.

For more information about how to how to set IIS permissions for specific objects, click the following article number to view the article in the Microsoft Knowledge Base:

324068 

(http://support.microsoft.com/kb/324068/
)

How to set IIS permissions for specific objects

Alternatively, you can disable script permissions by using metabase configuration in IIS 6.0 by setting AccessFlags property’s AccessScript flag to False at the upload directory level.
For more information and for sample scripts that can be changed for this use, visit the following Microsoft Web page:
AccessFlags Metabase Property (IIS 6.0)
(http://www.microsoft.com/technet/prodtechnol/WindowsServer2003/Library/IIS/e9b6d626-9583-4d59-b7f7-a079ec47461c.mspx?mfr=true)

To disable script permissions in configuration for IIS 7.0 and later versions, you have to set the accessPolicy flag on the handlers section not to have the Script value.

For more information about how to do this in IIS 7.0 and later versions, visit the following Microsoft Web page:
Configure Request Restrictions for a Handler Mapping
(http://technet.microsoft.com/en-us/library/cc730969(WS.10).aspx)
Note Make sure that you read the Script value for the access flags.

For more information about how to set permissions, visit the following Microsoft Web page:

Securing Sites with Web Site Permissions
(http://technet.microsoft.com/en-us/library/cc756133(WS.10).aspx)
The Web application should restrict uploads to authenticated and authorized users only

This gives the server administrator the ability to audit uploads through the Web application. In the case a user is trying malicious activity, it gives the server administrator an easy mechanism to keep the application functional while blocking out users who are trying malicious activity. When users can upload scripts and execute them through the Web application, authentication should be required and the IIS application pool identity hosting the Web application should not be an Administrative account.

For more information about how to configure application pool identities, visit the following Microsoft Web pages:

Configuring Worker Process Identities (for IIS 6.0)
(http://technet.microsoft.com/en-us/library/cc784505(WS.10).aspx)
Specify and Identity for an Application Pool (for IIS 7.0 and later versions)
(http://technet.microsoft.com/en-us/library/cc771170(WS.10).aspx)
Follow security best practices for your Web application

It is important to follow security best practices for all parts of your Web application and not just the upload logic.

For more information about best practices, visit the following Microsoft Web pages:

Securing IIS 5.0 Resource Guide
(http://technet.microsoft.com/en-us/library/cc750568.aspx)
IIS 6.0 Security Best Practices
(http://technet.microsoft.com/en-us/library/cc782762(WS.10).aspx)
Configuring Security for IIS 7.0
(http://learn.iis.net/page.aspx/88/configuring-security/)

For File Repair and Data Recovery, visit File Repair / Data Recovery