Stephen A. Fuqua (SAF) is a Bahá'í, software developer, and conservation and interfaith advocate in the DFW area of Texas.

Securely Accessing Network Resources in an ASP.Net Web Service

September 22, 2009

Problem: You have an ASP.Net web service/site that needs to access network resources, and IIS is running in a service account that you do not want to have access to those resources.

Solution: Create a custom network account and setup a separate application pool. Microsoft article How To: Create a Service Account for an ASP.NET 2.0 Application outlines some pros/cons and gives a few alternatives, as well as giving the basic instructions. However, I found that these instructions had to be modified with inclusion of a few extra security rules. Steps:

  1. Create service account
  2. Grant that account access to IIS. At the command prompt on the server, switch to c:\windows\microsoft.net\framework\v2.0.57207 and type “aspnet_regiis –ga psp\<newaccountname>”
  3. Create new application pool in IIS. Set Identity to the new account.
  4. Grant additional security settings:
    1. To solve error seen in Event Log, “The identity of application pool, '…' is invalid.”: [hat tip]
      1. Add user to the local IIS_WPG group
      2. Run secpol.msc to open the Local Security Settings. Open to Local Policies > User Rights Assignment, and add the account in “Long on as a service”
    2. To solve .Net exception, “Unable to generate a temporary class (result=1)”: [hat tip]
      1. Give Read & List Folder Contents permissions  on %windir%\temp.
  5. Create virtual directory in IIS and change the Application Pool to the new pool you created.

FYI, it is important not to forget basic web security when dealing with filesystem access. If the web service/site will allow “user” input to influence the directories or files that will be accessed, then it is best to create a whitelist of acceptable files, in order to avoid attacks whereby a user tries to open or replace a file they should not be able to access. Cf Insecure Direct Object Reference (OWASP Top 10).