diff options
| author | Tim Graham <timograham@gmail.com> | 2013-11-13 07:38:03 -0500 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2013-11-27 16:35:25 -0500 |
| commit | df6760f12c2f08287e2aa7b5ddee6e567ab83220 (patch) | |
| tree | bb346c949ab4bacbc7eecd4a5e9c6eaacf882f95 /docs/topics/http | |
| parent | 041a076dadce547d450cf73d97401d63cde8891d (diff) | |
Added a warning regarding risks in serving user uploaded media.
Thanks Preston Holmes for the draft text.
Diffstat (limited to 'docs/topics/http')
| -rw-r--r-- | docs/topics/http/file-uploads.txt | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/docs/topics/http/file-uploads.txt b/docs/topics/http/file-uploads.txt index d88524ee20..94415d03c3 100644 --- a/docs/topics/http/file-uploads.txt +++ b/docs/topics/http/file-uploads.txt @@ -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 ================== |
