From f6b09a7f85c3b67b2011553838b079788c413432 Mon Sep 17 00:00:00 2001 From: Remco Kranenburg Date: Fri, 13 Mar 2015 08:48:39 -0400 Subject: [PATCH] Refs #23559 -- warned about consequences of letting users edit User model in admin. --- docs/topics/auth/default.txt | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/topics/auth/default.txt b/docs/topics/auth/default.txt index bc3eaf4df8..156746e3c2 100644 --- a/docs/topics/auth/default.txt +++ b/docs/topics/auth/default.txt @@ -1414,6 +1414,11 @@ have the power to create superusers, which can then, in turn, change other users. So Django requires add *and* change permissions as a slight security measure. +Be thoughtful about how you allow users to manage permissions. If you give a +non-superuser the ability to edit users, this is ultimately the same as giving +them superuser status because they will be able to elevate permissions of +users including themselves! + Changing Passwords ------------------