This site is the archived OWASP Foundation Wiki and is no longer accepting Account Requests.
To view the new OWASP Foundation website, please visit https://owasp.org

Difference between revisions of "Web Service Security Cheat Sheet"

From OWASP
Jump to: navigation, search
Line 93: Line 93:
 
== 15. Endpoint Security Profile  ==
 
== 15. Endpoint Security Profile  ==
  
'''RULE''' - Web Services must be compliant with Web Services-Interoperability (WS-I) Basic Profile at minimum.
+
'''RULE''' - Web Services must be compliant with Web Services-Interoperability (WS-I) Basic Profile at minimum.  
  
 
== 16. Audit Logging  ==
 
== 16. Audit Logging  ==
  
'''RULE - '''Security related activities such as successful and unsuccessful login attempts must be logged into a protected environment. 
+
'''RULE - '''Security related activities such as successful and unsuccessful login attempts must be logged into a protected environment.   
  
 
== 17. XML Denial of Service Protection  ==
 
== 17. XML Denial of Service Protection  ==
  
XML Denial of Service is probably the most serious attack against Web Services.
+
XML Denial of Service is probably the most serious attack against Web Services. So the Web Service must provide the following validation:
  
RULE - 
+
'''RULE '''- Validation against recursive payloads
 +
 
 +
'''RULE '''- Validation against oversized payloads
 +
 
 +
'''RULE '''- Protection against XML entity expansion
  
 
== 18. Testing  ==
 
== 18. Testing  ==

Revision as of 01:44, 5 October 2011

DRAFT CHEAT SHEET - WORK IN PROGRESS

Introduction

This article is focused on providing guidance to securing web services and preventing web services related attacks. Please notice that due to the difference of implementation between different frameworks, this cheat sheet is kept at high level.

1. Transport Confidentiality

Transport confidentiality protects against eavesdropping and man-in-the-middle attacks against web service communications to\from the server.

Rule:All communication with and between web services containing sensitive features, an authenticated session, or transfer of sensitive data must be encrypted using well configured TLS. For more information see Transport Layer Protection Cheat Sheet

2. Transport Authentication

Transport level authentication verifies the identity of the user or the system trying to connect to the service. Usually, transport authentication is a functional of the container of the web service. 

Rule - Basic Authentication has to be conducted using HTTP over SSL 

Rule - Client Certificate Authentication using HTTP over SSL to be used if the client and server need to authenticate each other

3. Transport Encoding

SOAP encoding styles are meant to move 

4. Message Authentication

Rule - The Message Authentication over SSL mechanism attaches a cryptographically secured identity or authentication token with the message and use SSL for confidentiality protection.

5. Message Integrity

Encryption does guarantee confidentiality but it does not guarantee integrity as the message can be changed en route. In addition, encryption does not ensure the identity of the sender.

Rule - Use XML signatures to ensure message integrity using the sender's private key

6. Message Confidentiality

Message confidentiality guarantees that data is protected from eavesdropping and man-in-the-middle attacks.

Rule - SOAP Messages must be encrypted using a strong encryption cipher.

7. Authorization

Web services need to authorize web service clients the same way web applications authorize users. A web service needs to make sure a web service client is authorized to perform a certain action.

RULE - A web service should authorize its clients whether they have access to the method in question. This can be done using one of the following methods:

  • Having clients authorize to the web service using username and password
  • Having clients authorize to the web service using client certificates

8. Schema Validation

Schema validation enforces constraints, syntax and semantics defined by the schema.

RULE - Web services must validate SOAP payloads against the web service schema.

9. Content Validation

RULE - Like any web application, web services need to validate input before consuming it. Content validation include:

  • Validation against malformed XML entities
  • Validation against XML Bomb attacks
  • Validating inputs using a strong white list
  • Validating against external entity attacks


10. Output Encoding

Web services need to ensure that output sent to clients is encoded to be consumed as data and not as scripts. This gets pretty important when web service clients use the output to render HTML pages either directly or indirectly using AJAX objects.

RULE - All the rules of output encoding applies as per XSS (Cross Site Scripting) Prevention CheatSheet

11. Virus Protection

SOAP provides the ability to attach files and document to SOAP messages. This gives the opportunity for hackers to attach viruses and malware to these SOAP messages.

RULE - SOAP messages must be scanned against viruses and malware.

12. Message Size

Web services like web applications could be a target for DOS attacks by automatically sending the web services thousands of large size SOAP messages. This either cripples the application making it unable to respond to legitimate messages or it could take it down entirely.

RULE - SOAP Messages size should be limited to an appropriate size limit. Larger size limit (or no limit at all) increases the chances of a successful DOS attack.

13. Message Throughput

Throughput represents the number of Web Service requests served during a specific amount of time. Obsviously this depends on many factors including the hardware, the containser of the Web Service...etc

RULE - Configuration should be optimized for maximum message throughput to avoid running into DoS-like situations

14. Identity, key, cert, provisioning

15. Endpoint Security Profile

RULE - Web Services must be compliant with Web Services-Interoperability (WS-I) Basic Profile at minimum.

16. Audit Logging

RULE - Security related activities such as successful and unsuccessful login attempts must be logged into a protected environment. 

17. XML Denial of Service Protection

XML Denial of Service is probably the most serious attack against Web Services. So the Web Service must provide the following validation:

RULE - Validation against recursive payloads

RULE - Validation against oversized payloads

RULE - Protection against XML entity expansion

18. Testing

OWASP Cheat Sheets Project Homepage