| Retired Content |
This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies.
This page may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.
|

Improving Web Application Security: Threats and Countermeasures
J.D. Meier, Alex Mackman, Michael Dunner, Srinath Vasireddy, Ray Escamilla and Anandha Murukan
Microsoft Corporation
Published: June 2003
Applies to:
- .NET Framework version 1.1
See the "patterns & practices Security Guidance for Applications Index" for links to additional security resources.
See the Landing Page for the starting point and a complete overview of Improving Web Application Security: Threats and Countermeasures.
Contents
How to Use This Checklist
General Code Review Guidelines
Managed Code Review Guidelines
Resource Access Considerations
Code Access Security Considerations
How to Use This Checklist
This checklist is a companion to Chapter 7, "Building Secure Assemblies", and Chapter 8, "Code Access Security in Practice." Use it to help you implement a security review for managed code in your Web application, or as a quick evaluation snapshot of the corresponding chapters.
This checklist should evolve so that you can repeat a successful security review of managed code.
General Code Review Guidelines
| Check | Description |
 | Potential threats are clearly documented. (Threats are dependent upon the specific scenario and assembly type.) |
 | Code is developed based on .NET framework coding guidelines and secure coding guidelines at http://msdn.microsoft.com/en-us/library/czefa0ke(VS.71).aspx. |
 | The FXCop analysis tool is run on assemblies and security warnings are addressed. |
Managed Code Review Guidelines
Assembly-Level Checks
Class-Level Checks
| Check | Description |
 | Class and member visibility is restricted. The most restrictive access modifier is used (private where possible). |
 | Non-base classes are sealed if they contain security secrets (like passwords) accessible through protected APIs or if they contain many virtual members that cannot be sealed and the type is not really designed for third-party extensibility. |
 | Input from outside the current trust boundary is validated. Input data is constrained and validated for type, length, format, and range. |
 | Code implements declarative checks where virtual internal methods are used. |
 | Access to public classes and methods are restricted with principal permission demands (where appropriate). |
 | Fields are private. When necessary, field values are exposed by using read/write or read-only public properties. |
 | Read-only properties are used where possible. |
 | Types returned from methods that are not designed to be created independently contain private default constructors. |
 | Unsealed public types do not have internal virtual members. |
 | Use of event handlers is thoroughly reviewed. |
 | Static constructors are private. |
Cryptography
| Check | Description |
 | Code uses platform-provided cryptography and does not use custom implementations. |
 | Random keys are generated by using RNGCryptoServiceProvider (and not the Random class). |
 | PasswordDeriveBytes is used for password-based encryption. |
 | DPAPI is used to encrypt configuration secrets to avoid the key management issue. |
 | The appropriate key sizes are used for the chosen algorithm, or if they are not, the reasons are identified and understood. |
 | Keys are not held in code. |
 | Access to persisted keys is restricted. |
 | Keys are cycled periodically. |
 | Exported private keys are protected. |
Secrets
| Check | Description |
 | Secrets are not hard coded. |
 | Plain text secrets are not stored in configuration files. |
 | Plain text secrets are not stored in memory for extended periods of time. |
Exception Management
| Check | Description |
 | Code uses exception handling. You catch only the exceptions that you know about. |
 | Exception details are logged on the server to assist in diagnosing problems. |
 | The information that is returned to the end user is limited and safe. |
 | Code that uses exception filters is not sensitive to filter execution sequence (filter runs before finally block). |
 | Code fails early to avoid unnecessary processing that consumes resources. |
 | Exception conditions do not allow a user to bypass security checks to run privileged code. |
Delegates
| Check | Description |
 | Delegates are not accepted from untrusted sources. |
 | If code does accept a delegate from untrusted code, it constrains the delegate before calling it by using security permissions with SecurityAction.PermitOnly. |
 | Permissions are not asserted before calling a delegate. |
Serialization
| Check | Description |
 | Serialization is restricted to privileged code. |
 | Sensitive data is not serialized. |
 | Field data from serialized data streams is validated. |
 | ISerializable.GetObjectData implementation is protected with an identity permission demand in scenarios where you want to restrict which code can serialize the object. |
Threading
| Check | Description |
 | Results of security checks are not cached. |
 | Impersonation tokens are considered when new threads are created (any existing thread token is not passed to the new thread). |
 | Threads are synchronized in static class constructors for multithreaded application code. |
 | Object implementation code is designed and built to be thread safe. |
 | Threads are synchronized in static class constructors. |
Reflection
| Check | Description |
 | Caller cannot influence dynamically generated code (for example, by passing assembly and type names as input arguments). |
 | Code demands permission for user authorization where assemblies are loaded dynamically. |
Unmanaged Code Access
| Check | Description |
 | Input and output strings that are passed between managed and unmanaged code are constrained and validated. |
 | Array bounds are checked. |
 | File path lengths are checked and do not exceed MAX_PATH. |
 | Unmanaged code is compiled with the /GS switch. |
 | Use of "dangerous" APIs by unmanaged code is closely inspected. These include LogonUser, RevertToSelf, CreateThread, Network APIs, and Sockets APIs. |
 | Naming conventions (safe, native, unsafe) are applied to unmanaged APIs. |
 | Assemblies that call unmanaged code specify unmanaged permission requirements using declarative security (SecurityAction.RequestMinimum). |
 | Unmanaged API calls are sandboxed and isolated in a wrapper assembly. |
 | Use of SuppressUnmanagedCodeSecurityAttribute is thoroughly reviewed and additional security checks are implemented. |
 | Types are not annotated with SuppressUnmanagedCodeSecurityAttribute. (This attribute is used on specific P/Invoke method declarations instead.) |
 | Calling code is appropriately authorized using a full stack walk Demand (using either a .NET Framework permission or custom permission). |
 | Unmanaged types or handles are never exposed to partially trusted code. |
 | Pointers are private fields. |
 | Methods that use IntPtr fields in a type that has a finalizer call GC.KeepAlive(object). |
Resource Access Considerations
File I/O
| Check | Description |
 | No security decisions are made based on filenames. |
 | Input file paths and file names are well formed. |
 | Environment variables are not used to construct file paths. |
 | File access is constrained to the context of the application (by using a restricted FileIOPermission). |
 | Assembly file I/O requirements are specified using declarative security attributes (with SecurityAction.RequestMinimum). |
Event Log
| Check | Description |
 | Event log access code is constrained using EventLogPermission.
This particularly applies if your event logging code could be called by untrusted callers.
|
 | Event sources are created at installation time. If unable to create event sources at installation time, the administrator manually creates a new event source entry in the registry.
The account used to run the code that writes to the event log is not allowed to create new event sources by configuring ACL in the registry.
|
 | Security-sensitive data, such as passwords, is not written to the event log. |
Registry
| Check | Description |
 | Sensitive data, such as database connection strings or credentials, is encrypted prior to storage in the registry. |
 | Keys are restricted. If a key beneath HKEY_CURRENT_MACHINE is used, the key is configured with a restricted ACL. Alternatively, HKEY_CURRENT_USER is used. |
 | Registry access is constrained by using RegistryPermission. This applies especially if your registry access code could be called by untrusted callers. |
Environment Variables
| Check | Description |
 | Code that accesses environment variables is restricted with EnvironmentPermission. This applies especially if your code can be called by untrusted code. |
 | Environment permission requirements are declared by using declarative security attributes with SecurityAction.RequestMinimum. |
Code Access Security Considerations
If an entry is preceded by a star (*), it indicates that the checks are performed by the FXCop analysis tool. For more information about FXCop security checks, see http://code.msdn.microsoft.com/GotDotNet.aspx.

| Retired Content |
This content is outdated and is no longer being maintained. It is provided as a courtesy for individuals who are still using these technologies.
This page may contain URLs that were valid when originally published, but now link to sites or pages that no longer exist.
|