mirror of
https://github.com/django/django.git
synced 2025-08-03 10:34:04 +00:00
Fixed a remote code execution vulnerabilty in URL reversing.
Thanks Benjamin Bach for the report and initial patch. This is a security fix; disclosure to follow shortly.
This commit is contained in:
parent
ab90c4707b
commit
8b93b31487
5 changed files with 49 additions and 1 deletions
|
@ -21,6 +21,10 @@ def defaults_view(request, arg1, arg2):
|
|||
pass
|
||||
|
||||
|
||||
def nested_view(request):
|
||||
pass
|
||||
|
||||
|
||||
def erroneous_view(request):
|
||||
import non_existent # NOQA
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue