#26146: CsrfViewMiddleware responds to any arbitrary HTTP method outside of
'GET',
'HEAD', 'OPTIONS', and 'TRACE'
-------------------------------------+-------------------------------------
Reporter: finetype | Owner: nobody
Type: | Status: new
Cleanup/optimization |
Component: CSRF | Version: 1.8
Severity: Normal | Resolution:
Keywords: trace, track, csrf, | Triage Stage: Accepted
error, page |
Has patch: 0 | Needs documentation: 0
Needs tests: 0 | Patch needs improvement: 0
Easy pickings: 0 | UI/UX: 0
-------------------------------------+-------------------------------------
Comment (by hobarrera):
My first thought would be to simply do something like (please take this
more as pseudo-code than actual python):
{{{
if request.method not in ('GET', 'HEAD', 'OPTIONS', 'TRACE'):
if passes_check():
ok()
elif request.method in ('PUT', 'POST', 'DELETE'):
reject()
else: # Unknown method that failed the check
return 405 (or maybe 400?)
}}}
Would this be deemed acceptable?
--
Ticket URL: <https://code.djangoproject.com/ticket/26146#comment:3>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.
--
You received this message because you are subscribed to the Google Groups
"Django updates" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit
https://groups.google.com/d/msgid/django-updates/066.47bf383318b1d810a531a79540e33e4e%40djangoproject.com.
For more options, visit https://groups.google.com/d/optout.