diff options
| author | Tim Graham <timograham@gmail.com> | 2014-04-20 13:12:43 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2014-04-21 18:11:26 -0400 |
| commit | 8b93b31487d6d3b0fcbbd0498991ea0db9088054 (patch) | |
| tree | f71dd0182039fe8c7bbdc04c0c0eda8d1c3b2eb4 /tests/urlpatterns_reverse/nonimported_module.py | |
| parent | ab90c4707bc8c813962658350b2e6c13ea0b4711 (diff) | |
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.
Diffstat (limited to 'tests/urlpatterns_reverse/nonimported_module.py')
| -rw-r--r-- | tests/urlpatterns_reverse/nonimported_module.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/urlpatterns_reverse/nonimported_module.py b/tests/urlpatterns_reverse/nonimported_module.py new file mode 100644 index 0000000000..df046333d3 --- /dev/null +++ b/tests/urlpatterns_reverse/nonimported_module.py @@ -0,0 +1,3 @@ +def view(request): + """Stub view""" + pass |
