検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 207 for User (0.038 sec.)
Django 1.4.18 release notes — Django 4.0.6 ドキュメント 7615
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... d prepending HTTP_ . For instance, a header X-Auth-User would become HTTP_X_AUTH_USER in the WSGI environ ... dashes and headers containing underscores: X-Auth-User and X-Auth_User both become HTTP_X_AUTH_USER . Thi ... oxy carefully strips any incoming value for X-Auth-User , an attacker may be able to provide an X-Auth_Use ... ring deployment. Mitigated possible XSS attack via user-supplied redirect URLs ¶ Django relies on user inp ...
https://man.plustar.jp/django/releases/1.4.18.html - [similar]
Django 1.7.3 release notes — Django 4.0.6 ドキュメント 7392
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... d prepending HTTP_ . For instance, a header X-Auth-User would become HTTP_X_AUTH_USER in the WSGI environ ... dashes and headers containing underscores: X-Auth-User and X-Auth_User both become HTTP_X_AUTH_USER . Thi ... oxy carefully strips any incoming value for X-Auth-User , an attacker may be able to provide an X-Auth_Use ... ring deployment. Mitigated possible XSS attack via user-supplied redirect URLs ¶ Django relies on user inp ...
https://man.plustar.jp/django/releases/1.7.3.html - [similar]
Django 1.5 release notes — Django 4.0.6 ドキュメント 7041
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... gest new feature in Django 1.5 is the configurable User model . Before Django 1.5, applications that wante ... uth ) were forced to use Django's definition of a "user". In Django 1.5, you can now swap out the User mod ... . This could be a simple extension to the existing User model -- for example, you could add a Twitter or F ... ok ID field -- or you could completely replace the User with one totally customized for your site. Django ...
https://man.plustar.jp/django/releases/1.5.html - [similar]
Django 1.8.10 リリースノート — Django 4.0.6 ドキュメント 7041
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... 12: Malicious redirect and possible XSS attack via user-supplied redirect URLs containing basic auth ¶ Dja ... ngo relies on user input in some cases (e.g. django.contrib.auth.view ... s.login() and i18n ) to redirect the user to an "on success" URL. The security check for the ... xample.com , but redirecting to this URL sends the user to attacker.com . Also, if a developer relies on i ...
https://man.plustar.jp/django/releases/1.8.10.html - [similar]
Django 1.9.3 リリースノート — Django 4.0.6 ドキュメント 7041
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... 12: Malicious redirect and possible XSS attack via user-supplied redirect URLs containing basic auth ¶ Dja ... ngo relies on user input in some cases (e.g. django.contrib.auth.view ... s.login() and i18n ) to redirect the user to an "on success" URL. The security check for the ... xample.com , but redirecting to this URL sends the user to attacker.com . Also, if a developer relies on i ...
https://man.plustar.jp/django/releases/1.9.3.html - [similar]
How to manage error reporting — Django 4.0.6 ドキュメント 6988
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... need to specify EMAIL_HOST and possibly EMAIL_HOST_USER and EMAIL_HOST_PASSWORD , though other settings ma ... If those conditions are met, Django will email the users listed in the MANAGERS setting whenever your code ... be appropriate to be kept track of, for example a user's password or credit card number. So in addition t ... import sensitive_variables @sensitive_variables ( 'user' , 'pw' , 'cc' ) def process_info ( user ): pw = u ...
https://man.plustar.jp/django/howto/error-reporting.html - [similar]
データベース — Django 4.0.6 ドキュメント 6988
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... } } .pg_service.conf ¶ [my_service] host=localhost user=USER dbname=NAME port=5432 .my_pgpass ¶ localhost: ... 5432:NAME:USER:PASSWORD Changed in Django 4.0: Support for connec ... postgresql.conf or more conveniently per database user with ALTER ROLE . Django will work just fine witho ... xample: >>> from django.contrib.auth.models import User >>> User . objects . create ( username = 'alice' , ...
https://man.plustar.jp/django/ref/databases.html - [similar]
Django 1.4.14 release notes — Django 4.0.6 ドキュメント 6988
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... two slashes), which could unexpectedly redirect a user to a different host. An attacker could exploit thi ... s, for example, by redirecting users to a phishing site designed to ask for user's pas ... time. The net result is that given enough time, a user with the ability to upload files can cause poor pe ... lowed by a number (e.g. "_1" , "_2" , etc.). RemoteUserMiddleware session hijacking ¶ When using the Remot ...
https://man.plustar.jp/django/releases/1.4.14.html - [similar]
Django 1.5.9 release notes — Django 4.0.6 ドキュメント 6988
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... two slashes), which could unexpectedly redirect a user to a different host. An attacker could exploit thi ... s, for example, by redirecting users to a phishing site designed to ask for user's pas ... time. The net result is that given enough time, a user with the ability to upload files can cause poor pe ... lowed by a number (e.g. "_1" , "_2" , etc.). RemoteUserMiddleware session hijacking ¶ When using the Remot ...
https://man.plustar.jp/django/releases/1.5.9.html - [similar]
Django 1.10 リリースノート — Django 4.0.6 ドキュメント 6956
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... provements. Unicode ユーザー名の公式サポート ¶ The User model in django.contrib.auth originally only accep ... ted ASCII letters and numbers in usernames. Although it wasn't a deliberate choice, Unic ... have always been accepted when using Python 3. The username validator now explicitly accepts Unicode chara ... cters by default on Python 3 only. カスタムの user モデルでは、新しい ASCIIUsernameValidator や Unico ...
https://man.plustar.jp/django/releases/1.10.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 NEXT