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 "OWASP AJAX Security Guidelines"
Meddington (talk | contribs) |
|||
Line 48: | Line 48: | ||
This is the overall one that gets me out of trouble in case I missed something :) | This is the overall one that gets me out of trouble in case I missed something :) | ||
+ | |||
+ | == JSON == | ||
+ | |||
+ | === Never send JSON via Querystring === | ||
+ | |||
+ | Sending JSON over a querystring would typically cause a cross-site scripting vulnerability as JSON strings are eval'd by the Javascript. JSON content should always come from a trusted source as it will be executed. | ||
+ | |||
+ | === Always return JSON with an Object on the outside === | ||
+ | |||
+ | Always have the outside primitive be an object for JSON strings. | ||
+ | |||
+ | '''Explotable:''' | ||
+ | <pre> | ||
+ | [{"object": "inside an array"}] | ||
+ | </pre> | ||
+ | |||
+ | '''Not exploitable:''' | ||
+ | <pre> | ||
+ | {"object": "not inside an array"} | ||
+ | </pre> | ||
+ | |||
+ | '''Also not exploitable:''' | ||
+ | <pre> | ||
+ | {"result": [{"object": "inside an array"}]} | ||
+ | </pre> | ||
== ASP.NET == | == ASP.NET == | ||
Line 70: | Line 95: | ||
Use the framework and be safe, do it by hand and have security issues. Simple. | Use the framework and be safe, do it by hand and have security issues. Simple. | ||
− | === Avoid building JSON by hand, use an existing | + | === Avoid building JSON by hand, use an existing framework === |
This is to hard to get right. Use existing code for this. Check out the JSON site for information. | This is to hard to get right. Use existing code for this. Check out the JSON site for information. | ||
Line 83: | Line 108: | ||
This content was created by [http://phed.org Michael Eddington] of [http://leviathansecurity.com Leviathan Security Group, Inc.] | This content was created by [http://phed.org Michael Eddington] of [http://leviathansecurity.com Leviathan Security Group, Inc.] | ||
+ | Last updated 02/13/2008 | ||
[[Category:OWASP AJAX Security Project]] | [[Category:OWASP AJAX Security Project]] | ||
[[Category:AJAX]] | [[Category:AJAX]] |
Revision as of 21:46, 13 February 2008
- 1 AJAX Security Guidelines
- 1.1 Client Side (Javascript)
- 1.1.1 Use .innerText instead of .innerHtml
- 1.1.2 Don't use eval
- 1.1.3 Canonicalize data to consumer (read: encode before use)
- 1.1.4 Don't rely on client logic for security
- 1.1.5 Don't rely on client business logic
- 1.1.6 Avoid writing serialization code
- 1.1.7 Avoid building XML dynamically
- 1.1.8 Never transmit secrets to the client
- 1.1.9 Don't perform encryption in client side code
- 1.1.10 Don't perform security impacting logic on client side
- 1.2 JSON
- 1.3 ASP.NET
- 1.4 Java
- 1.5 Credit
- 1.1 Client Side (Javascript)
AJAX Security Guidelines
There is a complete lack of guidelines for AJAX. This document will provide a starting point for AJAX security and will hopefully be updated and expanded reasonably often to provide more detailed information about specific frameworks and technologies.
Client Side (Javascript)
Use .innerText instead of .innerHtml
The use of .innerText will prevent most XSS problems as it will automatically encode the text. Only use innerHtml when you are displaying HTML.
Don't use eval
Eval is evil, never use it. Needing to use eval usually indicates a problem in your design.
Canonicalize data to consumer (read: encode before use)
When using data to build HTML, script, CSS, XML, JSON, etc. make sure you take into account how that data must be presented in a literal sense to keep it's logical meaning. Data should be properly encoded before used in this manor to prevent injection style issues, and to make sure the logical meaning is preserved.
Check out the OWASP Encoding Project.
Don't rely on client logic for security
Least ye have forgotten the user controls the client side logic. I can use a number of browser plugging to set breakpoints, skip code, change values, etc. Never rely on client logic.
Don't rely on client business logic
Just like the security one, make sure any interesting business rules/logic is duplicated on the server side less a user bypass needed logic and do something silly, or worse, costly.
Avoid writing serialization code
This is hard and even a small mistake can cause large security issues. There are already a lot of frameworks to provide this functionality. Take a look at the JSON page for links.
Avoid building XML dynamically
Just like building HTML or SQL you will cause XML injection bugs, so stay way from this or at least use an encoding library to make attributes and element data safe.
Check out the OWASP Encoding Project.
Never transmit secrets to the client
I hope this is a "duh" item. Anything the client knows the user will also know, so keep all that secret stuff on the server please.
Don't perform encryption in client side code
Use SSL and encrypt on the server!
Don't perform security impacting logic on client side
This is the overall one that gets me out of trouble in case I missed something :)
JSON
Never send JSON via Querystring
Sending JSON over a querystring would typically cause a cross-site scripting vulnerability as JSON strings are eval'd by the Javascript. JSON content should always come from a trusted source as it will be executed.
Always return JSON with an Object on the outside
Always have the outside primitive be an object for JSON strings.
Explotable:
[{"object": "inside an array"}]
Not exploitable:
{"object": "not inside an array"}
Also not exploitable:
{"result": [{"object": "inside an array"}]}
ASP.NET
Avoid writing serialization code. Remember ref vs. value types!
Writing serialization code in .NET seems not to hard and yet everyone gets it wrong. Look for an existing library that has been reviewed. I'll post more on that as I eval them.
Services can be called by users directly
Even though you only expect your AJAX client side code to call those services the users can too. Make sure you validate inputs and treat them like they are under user control (because they are!).
Web service calls are not schema verified
You need to use a 3rd party library to validate web services.
Check out OWASP .NET Web Service Validation.
Avoid building XML by hand, use the framework
Use the framework and be safe, do it by hand and have security issues. Simple.
Avoid building JSON by hand, use an existing framework
This is to hard to get right. Use existing code for this. Check out the JSON site for information.
Java
Coming soon....maybe...
Credit
This content was created by Michael Eddington of Leviathan Security Group, Inc.
Last updated 02/13/2008