aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorMateusz Konieczny <matkoniecz@users.noreply.github.com>2016-05-17 20:07:35 +0200
committerप्रथमेश Sonpatki <csonpatki@gmail.com>2016-05-17 23:37:35 +0530
commit17f04e446a6b3d5ca457e9666e06ee4eccdfa9c2 (patch)
treee8e83bbedee9989475d1016b63cdf841d4fe0b37 /guides
parent07fe3569e6240452ee9952ee7c926934fdf7f116 (diff)
downloadrails-17f04e446a6b3d5ca457e9666e06ee4eccdfa9c2.tar.gz
rails-17f04e446a6b3d5ca457e9666e06ee4eccdfa9c2.tar.bz2
rails-17f04e446a6b3d5ca457e9666e06ee4eccdfa9c2.zip
Safari 4 supports http only cookie (#25053)
* Update documentation about Safari 4 supporting http only cookie - Source: www.greebo.net/2009/06/09/httponly-in-safari-40-release/ via http://stackoverflow.com/questions/528405/which-browsers-do-support-httponly-cookies
Diffstat (limited to 'guides')
-rw-r--r--guides/source/security.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/security.md b/guides/source/security.md
index 8c3e44d98a..58d1a21cd9 100644
--- a/guides/source/security.md
+++ b/guides/source/security.md
@@ -722,7 +722,7 @@ The log files on www.attacker.com will read like this:
GET http://www.attacker.com/_app_session=836c1c25278e5b321d6bea4f19cb57e2
```
-You can mitigate these attacks (in the obvious way) by adding the **httpOnly** flag to cookies, so that document.cookie may not be read by JavaScript. Http only cookies can be used from IE v6.SP1, Firefox v2.0.0.5 and Opera 9.5. Safari is still considering, it ignores the option. But other, older browsers (such as WebTV and IE 5.5 on Mac) can actually cause the page to fail to load. Be warned that cookies [will still be visible using Ajax](https://www.owasp.org/index.php/HTTPOnly#Browsers_Supporting_HttpOnly), though.
+You can mitigate these attacks (in the obvious way) by adding the **httpOnly** flag to cookies, so that document.cookie may not be read by JavaScript. HTTP only cookies can be used from IE v6.SP1, Firefox v2.0.0.5, Opera 9.5, Safari 4 and Chrome 1.0.154 onwards. But other, older browsers (such as WebTV and IE 5.5 on Mac) can actually cause the page to fail to load. Be warned that cookies [will still be visible using Ajax](https://www.owasp.org/index.php/HTTPOnly#Browsers_Supporting_HttpOnly), though.
##### Defacement