1
0
mirror of https://github.com/django/django.git synced 2025-10-27 23:56:08 +00:00

[1.6.x] Added a warning regarding risks in serving user uploaded media.

Thanks Preston Holmes for the draft text.

Backport of df6760f12c from master
This commit is contained in:
Tim Graham
2013-11-13 07:38:03 -05:00
parent 87433c30c7
commit 3f8583a2c8
3 changed files with 58 additions and 4 deletions

View File

@@ -10,6 +10,12 @@ When Django handles a file upload, the file data ends up placed in
</ref/request-response>`). This document explains how files are stored on disk
and in memory, and how to customize the default behavior.
.. warning::
There are security risks if you are accepting uploaded content from
untrusted users! See the security guide's topic on
:ref:`user-uploaded-content-security` for mitigation details.
Basic file uploads
==================