-
-
Notifications
You must be signed in to change notification settings - Fork 33.8k
bpo-29613: Added support for SameSite cookies #214
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 1 commit
ef83909
c8bc135
c064da4
364ea46
c3890a2
6ed3f3f
aa54e50
a6cbc20
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
- Loading branch information
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -143,13 +143,13 @@ Morsel Objects | |
| in HTTP requests, and is not accessible through JavaScript. This is intended | ||
| to mitigate some forms of cross-site scripting. | ||
|
|
||
| The attribute :attr:`samesite` specifies that browser is not allowed to send the | ||
| cookie along with cross-site requests. This help to mitigate CSRF attacks. Valid | ||
| values for this attribute are "Strict" and "Lax". | ||
|
||
|
|
||
|
||
| .. versionchanged:: 3.7 | ||
| Added support for :attr:`samesite` attribute. | ||
|
|
||
| The attribute :attr:`samesite` specifies that browser is not allowed to send the | ||
| cookie along with cross-site requests. This help to mitigate CSRF attacks. Valid | ||
| values for this attribute are "Strict" and "Lax". | ||
|
|
||
| The keys are case-insensitive and their default value is ``''``. | ||
|
|
||
| .. versionchanged:: 3.5 | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This helps