checks.txt 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491
  1. ======================
  2. System check framework
  3. ======================
  4. The system check framework is a set of static checks for validating Django
  5. projects. It detects common problems and provides hints for how to fix them.
  6. The framework is extensible so you can easily add your own checks.
  7. For details on how to add your own checks and integrate them with Django's
  8. system checks, see the :doc:`System check topic guide </topics/checks>`.
  9. Builtin tags
  10. ------------
  11. Django's system checks are organized using the following tags:
  12. * ``models``: Checks governing model, field and manager definitions.
  13. * ``signals``: Checks on signal declarations and handler registrations.
  14. * ``admin``: Checks of any admin site declarations.
  15. * ``compatibility``: Flagging potential problems with version upgrades.
  16. * ``security``: Checks security related configuration.
  17. Some checks may be registered with multiple tags.
  18. Core system checks
  19. ------------------
  20. Models
  21. ~~~~~~
  22. * **models.E001**: ``<swappable>`` is not of the form ``app_label.app_name``.
  23. * **models.E002**: ``<SETTING>`` references ``<model>``, which has not been
  24. installed, or is abstract.
  25. * **models.E003**: The model has two many-to-many relations through the
  26. intermediate model ``<app_label>.<model>``.
  27. * **models.E004**: ``id`` can only be used as a field name if the field also
  28. sets ``primary_key=True``.
  29. * **models.E005**: The field ``<field name>`` from parent model ``<model>``
  30. clashes with the field ``<field name>`` from parent model ``<model>``.
  31. * **models.E006**: The field clashes with the field ``<field name>`` from model
  32. ``<model>``.
  33. * **models.E007**: Field ``<field name>`` has column name ``<column name>``
  34. that is used by another field.
  35. * **models.E008**: ``index_together`` must be a list or tuple.
  36. * **models.E009**: All ``index_together`` elements must be lists or tuples.
  37. * **models.E010**: ``unique_together`` must be a list or tuple.
  38. * **models.E011**: All ``unique_together`` elements must be lists or tuples.
  39. * **models.E012**: ``index_together/unique_together`` refers to the
  40. non-existent field ``<field name>``.
  41. * **models.E013**: ``index_together/unique_together`` refers to a
  42. ``ManyToManyField`` ``<field name>``, but ``ManyToManyField``\s are not
  43. supported for that option.
  44. * **models.E014**: ``ordering`` must be a tuple or list (even if you want to
  45. order by only one field).
  46. * **models.E015**: ``ordering`` refers to the non-existent field
  47. ``<field name>``.
  48. * **models.E016**: ``index_together/unique_together`` refers to field
  49. ``<field_name>`` which is not local to model ``<model>``.
  50. * **models.E017**: Proxy model ``<model>`` contains model fields.
  51. * **models.E018**: Autogenerated column name too long for field ``<field>``.
  52. Maximum length is ``<maximum length>`` for database ``<alias>``.
  53. * **models.E019**: Autogenerated column name too long for M2M field
  54. ``<M2M field>``. Maximum length is ``<maximum length>`` for database
  55. ``<alias>``.
  56. * **models.E020**: The ``<model>.check()`` class method is currently overridden.
  57. Fields
  58. ~~~~~~
  59. * **fields.E001**: Field names must not end with an underscore.
  60. * **fields.E002**: Field names must not contain ``"__"``.
  61. * **fields.E003**: ``pk`` is a reserved word that cannot be used as a field
  62. name.
  63. * **fields.E004**: ``choices`` must be an iterable (e.g., a list or tuple).
  64. * **fields.E005**: ``choices`` must be an iterable returning ``(actual value,
  65. human readable name)`` tuples.
  66. * **fields.E006**: ``db_index`` must be ``None``, ``True`` or ``False``.
  67. * **fields.E007**: Primary keys must not have ``null=True``.
  68. * **fields.E100**: ``AutoField``\s must set primary_key=True.
  69. * **fields.E110**: ``BooleanField``\s do not accept null values.
  70. * **fields.E120**: ``CharField``\s must define a ``max_length`` attribute.
  71. * **fields.E121**: ``max_length`` must be a positive integer.
  72. * **fields.W122**: ``max_length`` is ignored when used with ``IntegerField``.
  73. * **fields.E130**: ``DecimalField``\s must define a ``decimal_places`` attribute.
  74. * **fields.E131**: ``decimal_places`` must be a non-negative integer.
  75. * **fields.E132**: ``DecimalField``\s must define a ``max_digits`` attribute.
  76. * **fields.E133**: ``max_digits`` must be a non-negative integer.
  77. * **fields.E134**: ``max_digits`` must be greater or equal to ``decimal_places``.
  78. * **fields.E140**: ``FilePathField``\s must have either ``allow_files`` or
  79. ``allow_folders`` set to True.
  80. * **fields.E150**: ``GenericIPAddressField``\s cannot accept blank values if
  81. null values are not allowed, as blank values are stored as nulls.
  82. * **fields.E160**: The options ``auto_now``, ``auto_now_add``, and ``default``
  83. are mutually exclusive. Only one of these options may be present.
  84. * **fields.W161**: Fixed default value provided.
  85. * **fields.E900**: ``IPAddressField`` has been removed except for support in
  86. historical migrations.
  87. * **fields.W900**: ``IPAddressField`` has been deprecated. Support for it
  88. (except in historical migrations) will be removed in Django 1.9. *This check
  89. appeared in Django 1.7 and 1.8*.
  90. File Fields
  91. ~~~~~~~~~~~
  92. * **fields.E200**: ``unique`` is not a valid argument for a ``FileField``.
  93. * **fields.E201**: ``primary_key`` is not a valid argument for a ``FileField``.
  94. * **fields.E210**: Cannot use ``ImageField`` because Pillow is not installed.
  95. Related Fields
  96. ~~~~~~~~~~~~~~
  97. * **fields.E300**: Field defines a relation with model ``<model>``, which is
  98. either not installed, or is abstract.
  99. * **fields.E301**: Field defines a relation with the model ``<model>`` which
  100. has been swapped out.
  101. * **fields.E302**: Accessor for field ``<field name>`` clashes with field
  102. ``<field name>``.
  103. * **fields.E303**: Reverse query name for field ``<field name>`` clashes with
  104. field ``<field name>``.
  105. * **fields.E304**: Field name ``<field name>`` clashes with accessor for
  106. ``<field name>``.
  107. * **fields.E305**: Field name ``<field name>`` clashes with reverse query name
  108. for ``<field name>``.
  109. * **fields.E306**: Related name must be a valid Python identifier or end with
  110. a ``'+'``.
  111. * **fields.E310**: None of the fields ``<field1>``, ``<field2>``, ... on model
  112. ``<model>`` have a ``unique=True`` constraint.
  113. * **fields.E311**: ``<model>`` must set ``unique=True`` because it is
  114. referenced by a ``ForeignKey``.
  115. * **fields.E320**: Field specifies ``on_delete=SET_NULL``, but cannot be null.
  116. * **fields.E321**: The field specifies ``on_delete=SET_DEFAULT``, but has no
  117. default value.
  118. * **fields.E330**: ``ManyToManyField``\s cannot be unique.
  119. * **fields.E331**: Field specifies a many-to-many relation through model
  120. ``<model>``, which has not been installed.
  121. * **fields.E332**: Many-to-many fields with intermediate tables must not be
  122. symmetrical.
  123. * **fields.E333**: The model is used as an intermediate model by ``<model>``,
  124. but it has more than two foreign keys to ``<model>``, which is ambiguous.
  125. You must specify which two foreign keys Django should use via the
  126. ``through_fields`` keyword argument.
  127. * **fields.E334**: The model is used as an intermediate model by ``<model>``,
  128. but it has more than one foreign key from ``<model>``, which is ambiguous.
  129. You must specify which foreign key Django should use via the
  130. ``through_fields`` keyword argument.
  131. * **fields.E335**: The model is used as an intermediate model by ``<model>``,
  132. but it has more than one foreign key to ``<model>``, which is ambiguous.
  133. You must specify which foreign key Django should use via the
  134. ``through_fields`` keyword argument.
  135. * **fields.E336**: The model is used as an intermediary model by ``<model>``,
  136. but it does not have foreign key to ``<model>`` or ``<model>``.
  137. * **fields.E337**: Field specifies ``through_fields`` but does not provide the
  138. names of the two link fields that should be used for the relation through
  139. ``<model>``.
  140. * **fields.E338**: The intermediary model ``<through model>`` has no field
  141. ``<field name>``.
  142. * **fields.E339**: ``<model>.<field name>`` is not a foreign key to ``<model>``.
  143. * **fields.W340**: ``null`` has no effect on ``ManyToManyField``.
  144. * **fields.W341**: ``ManyToManyField`` does not support ``validators``.
  145. * **fields.W342**: Setting ``unique=True`` on a ``ForeignKey`` has the same
  146. effect as using a ``OneToOneField``.
  147. Signals
  148. ~~~~~~~
  149. * **signals.E001**: ``<handler>`` was connected to the ``<signal>`` signal with
  150. a lazy reference to the ``<model>`` sender, which has not been installed.
  151. Backwards Compatibility
  152. ~~~~~~~~~~~~~~~~~~~~~~~
  153. The following checks are performed to warn the user of any potential problems
  154. that might occur as a result of a version upgrade.
  155. * **1_6.W001**: Some project unit tests may not execute as expected. *This
  156. check was removed in Django 1.8 due to false positives*.
  157. * **1_6.W002**: ``BooleanField`` does not have a default value. *This
  158. check was removed in Django 1.8 due to false positives*.
  159. * **1_7.W001**: Django 1.7 changed the global defaults for the
  160. ``MIDDLEWARE_CLASSES.``
  161. ``django.contrib.sessions.middleware.SessionMiddleware``,
  162. ``django.contrib.auth.middleware.AuthenticationMiddleware``, and
  163. ``django.contrib.messages.middleware.MessageMiddleware`` were removed from
  164. the defaults. If your project needs these middleware then you should
  165. configure this setting. *This check was removed in Django 1.9*.
  166. Admin
  167. -----
  168. Admin checks are all performed as part of the ``admin`` tag.
  169. The following checks are performed on any
  170. :class:`~django.contrib.admin.ModelAdmin` (or subclass) that is registered
  171. with the admin site:
  172. * **admin.E001**: The value of ``raw_id_fields`` must be a list or tuple.
  173. * **admin.E002**: The value of ``raw_id_fields[n]`` refers to ``<field name>``,
  174. which is not an attribute of ``<model>``.
  175. * **admin.E003**: The value of ``raw_id_fields[n]`` must be a ``ForeignKey`` or
  176. ``ManyToManyField``.
  177. * **admin.E004**: The value of ``fields`` must be a list or tuple.
  178. * **admin.E005**: Both ``fieldsets`` and ``fields`` are specified.
  179. * **admin.E006**: The value of ``fields`` contains duplicate field(s).
  180. * **admin.E007**: The value of ``fieldsets`` must be a list or tuple.
  181. * **admin.E008**: The value of ``fieldsets[n]`` must be a list or tuple.
  182. * **admin.E009**: The value of ``fieldsets[n]`` must be of length 2.
  183. * **admin.E010**: The value of ``fieldsets[n][1]`` must be a dictionary.
  184. * **admin.E011**: The value of ``fieldsets[n][1]`` must contain the key
  185. ``fields``.
  186. * **admin.E012**: There are duplicate field(s) in ``fieldsets[n][1]``.
  187. * **admin.E013**: ``fields[n]/fieldsets[n][m]`` cannot include the
  188. ``ManyToManyField`` ``<field name>``, because that field manually specifies a
  189. relationship model.
  190. * **admin.E014**: The value of ``exclude`` must be a list or tuple.
  191. * **admin.E015**: The value of ``exclude`` contains duplicate field(s).
  192. * **admin.E016**: The value of ``form`` must inherit from ``BaseModelForm``.
  193. * **admin.E017**: The value of ``filter_vertical`` must be a list or tuple.
  194. * **admin.E018**: The value of ``filter_horizontal`` must be a list or tuple.
  195. * **admin.E019**: The value of ``filter_vertical[n]/filter_vertical[n]`` refers
  196. to ``<field name>``, which is not an attribute of ``<model>``.
  197. * **admin.E020**: The value of ``filter_vertical[n]/filter_vertical[n]`` must
  198. be a ``ManyToManyField``.
  199. * **admin.E021**: The value of ``radio_fields`` must be a dictionary.
  200. * **admin.E022**: The value of ``radio_fields`` refers to ``<field name>``,
  201. which is not an attribute of ``<model>``.
  202. * **admin.E023**: The value of ``radio_fields`` refers to ``<field name>``,
  203. which is not a ``ForeignKey``, and does not have a ``choices`` definition.
  204. * **admin.E024**: The value of ``radio_fields[<field name>]`` must be either
  205. ``admin.HORIZONTAL`` or ``admin.VERTICAL``.
  206. * **admin.E025**: The value of ``view_on_site`` must be either a callable or a
  207. boolean value.
  208. * **admin.E026**: The value of ``prepopulated_fields`` must be a dictionary.
  209. * **admin.E027**: The value of ``prepopulated_fields`` refers to
  210. ``<field name>``, which is not an attribute of ``<model>``.
  211. * **admin.E028**: The value of ``prepopulated_fields`` refers to
  212. ``<field name>``, which must not be a ``DateTimeField``, ``ForeignKey`` or
  213. ``ManyToManyField``.
  214. * **admin.E029**: The value of ``prepopulated_fields[<field name>]`` must be a
  215. list or tuple.
  216. * **admin.E030**: The value of ``prepopulated_fields`` refers to
  217. ``<field name>``, which is not an attribute of ``<model>``.
  218. * **admin.E031**: The value of ``ordering`` must be a list or tuple.
  219. * **admin.E032**: The value of ``ordering`` has the random ordering marker
  220. ``?``, but contains other fields as well.
  221. * **admin.E033**: The value of ``ordering`` refers to ``<field name>``, which
  222. is not an attribute of ``<model>``.
  223. * **admin.E034**: The value of ``readonly_fields`` must be a list or tuple.
  224. * **admin.E035**: The value of ``readonly_fields[n]`` is not a callable, an
  225. attribute of ``<ModelAdmin class>``, or an attribute of ``<model>``.
  226. ModelAdmin
  227. ~~~~~~~~~~
  228. The following checks are performed on any
  229. :class:`~django.contrib.admin.ModelAdmin` that is registered
  230. with the admin site:
  231. * **admin.E101**: The value of ``save_as`` must be a boolean.
  232. * **admin.E102**: The value of ``save_on_top`` must be a boolean.
  233. * **admin.E103**: The value of ``inlines`` must be a list or tuple.
  234. * **admin.E104**: ``<InlineModelAdmin class>`` must inherit from
  235. ``BaseModelAdmin``.
  236. * **admin.E105**: ``<InlineModelAdmin class>`` must have a ``model`` attribute.
  237. * **admin.E106**: The value of ``<InlineModelAdmin class>.model`` must be a
  238. ``Model``.
  239. * **admin.E107**: The value of ``list_display`` must be a list or tuple.
  240. * **admin.E108**: The value of ``list_display[n]`` refers to ``<label>``,
  241. which is not a callable, an attribute of ``<ModelAdmin class>``, or an
  242. attribute or method on ``<model>``.
  243. * **admin.E109**: The value of ``list_display[n]`` must not be a
  244. ``ManyToManyField``.
  245. * **admin.E110**: The value of ``list_display_links`` must be a list, a tuple,
  246. or ``None``.
  247. * **admin.E111**: The value of ``list_display_links[n]`` refers to ``<label>``,
  248. which is not defined in ``list_display``.
  249. * **admin.E112**: The value of ``list_filter`` must be a list or tuple.
  250. * **admin.E113**: The value of ``list_filter[n]`` must inherit from
  251. ``ListFilter``.
  252. * **admin.E114**: The value of ``list_filter[n]`` must not inherit from
  253. ``FieldListFilter``.
  254. * **admin.E115**: The value of ``list_filter[n][1]`` must inherit from
  255. ``FieldListFilter``.
  256. * **admin.E116**: The value of ``list_filter[n]`` refers to ``<label>``,
  257. which does not refer to a Field.
  258. * **admin.E117**: The value of ``list_select_related`` must be a boolean,
  259. tuple or list.
  260. * **admin.E118**: The value of ``list_per_page`` must be an integer.
  261. * **admin.E119**: The value of ``list_max_show_all`` must be an integer.
  262. * **admin.E120**: The value of ``list_editable`` must be a list or tuple.
  263. * **admin.E121**: The value of ``list_editable[n]`` refers to ``<label>``,
  264. which is not an attribute of ``<model>``.
  265. * **admin.E122**: The value of ``list_editable[n]`` refers to ``<label>``,
  266. which is not contained in ``list_display``.
  267. * **admin.E123**: The value of ``list_editable[n]`` cannot be in both
  268. ``list_editable`` and ``list_display_links``.
  269. * **admin.E124**: The value of ``list_editable[n]`` refers to the first field
  270. in ``list_display`` (``<label>``), which cannot be used unless
  271. ``list_display_links`` is set.
  272. * **admin.E125**: The value of ``list_editable[n]`` refers to ``<field name>``,
  273. which is not editable through the admin.
  274. * **admin.E126**: The value of ``search_fields`` must be a list or tuple.
  275. * **admin.E127**: The value of ``date_hierarchy`` refers to ``<field name>``,
  276. which is not an attribute of ``<model>``.
  277. * **admin.E128**: The value of ``date_hierarchy`` must be a ``DateField`` or
  278. ``DateTimeField``.
  279. InlineModelAdmin
  280. ~~~~~~~~~~~~~~~~
  281. The following checks are performed on any
  282. :class:`~django.contrib.admin.InlineModelAdmin` that is registered as an
  283. inline on a :class:`~django.contrib.admin.ModelAdmin`.
  284. * **admin.E201**: Cannot exclude the field ``<field name>``, because it is the
  285. foreign key to the parent model ``<app_label>.<model>``.
  286. * **admin.E202**: ``<model>`` has no ``ForeignKey`` to ``<parent model>``./
  287. ``<model>`` has more than one ``ForeignKey`` to ``<parent model>``.
  288. * **admin.E203**: The value of ``extra`` must be an integer.
  289. * **admin.E204**: The value of ``max_num`` must be an integer.
  290. * **admin.E205**: The value of ``min_num`` must be an integer.
  291. * **admin.E206**: The value of ``formset`` must inherit from
  292. ``BaseModelFormSet``.
  293. GenericInlineModelAdmin
  294. ~~~~~~~~~~~~~~~~~~~~~~~
  295. The following checks are performed on any
  296. :class:`~django.contrib.contenttypes.admin.GenericInlineModelAdmin` that is
  297. registered as an inline on a :class:`~django.contrib.admin.ModelAdmin`.
  298. * **admin.E301**: ``'ct_field'`` references ``<label>``, which is not a field
  299. on ``<model>``.
  300. * **admin.E302**: ``'ct_fk_field'`` references ``<label>``, which is not a
  301. field on ``<model>``.
  302. * **admin.E303**: ``<model>`` has no ``GenericForeignKey``.
  303. * **admin.E304**: ``<model>`` has no ``GenericForeignKey`` using content type
  304. field ``<field name>`` and object ID field ``<field name>``.
  305. Auth
  306. ----
  307. * **auth.E001**: ``REQUIRED_FIELDS`` must be a list or tuple.
  308. * **auth.E002**: The field named as the ``USERNAME_FIELD`` for a custom user
  309. model must not be included in ``REQUIRED_FIELDS``.
  310. * **auth.E003**: ``<field>`` must be unique because it is named as the
  311. ``USERNAME_FIELD``.
  312. * **auth.W004**: ``<field>`` is named as the ``USERNAME_FIELD``, but it is not
  313. unique.
  314. Content Types
  315. -------------
  316. The following checks are performed when a model contains a
  317. :class:`~django.contrib.contenttypes.fields.GenericForeignKey` or
  318. :class:`~django.contrib.contenttypes.fields.GenericRelation`:
  319. * **contenttypes.E001**: The ``GenericForeignKey`` object ID references the
  320. non-existent field ``<field>``.
  321. * **contenttypes.E002**: The ``GenericForeignKey`` content type references the
  322. non-existent field ``<field>``.
  323. * **contenttypes.E003**: ``<field>`` is not a ``ForeignKey``.
  324. * **contenttypes.E004**: ``<field>`` is not a ``ForeignKey`` to
  325. ``contenttypes.ContentType``.
  326. Security
  327. --------
  328. The security checks do not make your site secure. They do not audit code, do
  329. intrusion detection, or do anything particularly complex. Rather, they help
  330. perform an automated, low-hanging-fruit checklist. They help you remember the
  331. simple things that improve your site's security.
  332. Some of these checks may not be appropriate for your particular deployment
  333. configuration. For instance, if you do your HTTP to HTTPS redirection in a load
  334. balancer, it'd be irritating to be constantly warned about not having enabled
  335. :setting:`SECURE_SSL_REDIRECT`. Use :setting:`SILENCED_SYSTEM_CHECKS` to
  336. silence unneeded checks.
  337. The following checks will be run if you use the :djadminopt:`--deploy` option
  338. of the :djadmin:`check` command:
  339. * **security.W001**: You do not have
  340. :class:`django.middleware.security.SecurityMiddleware` in your
  341. :setting:`MIDDLEWARE_CLASSES` so the :setting:`SECURE_HSTS_SECONDS`,
  342. :setting:`SECURE_CONTENT_TYPE_NOSNIFF`, :setting:`SECURE_BROWSER_XSS_FILTER`,
  343. and :setting:`SECURE_SSL_REDIRECT` settings will have no effect.
  344. * **security.W002**: You do not have
  345. :class:`django.middleware.clickjacking.XFrameOptionsMiddleware` in your
  346. :setting:`MIDDLEWARE_CLASSES`, so your pages will not be served with an
  347. ``'x-frame-options'`` header. Unless there is a good reason for your
  348. site to be served in a frame, you should consider enabling this
  349. header to help prevent clickjacking attacks.
  350. * **security.W003**: You don't appear to be using Django's built-in cross-site
  351. request forgery protection via the middleware
  352. (:class:`django.middleware.csrf.CsrfViewMiddleware` is not in your
  353. :setting:`MIDDLEWARE_CLASSES`). Enabling the middleware is the safest
  354. approach to ensure you don't leave any holes.
  355. * **security.W004**: You have not set a value for the
  356. :setting:`SECURE_HSTS_SECONDS` setting. If your entire site is served only
  357. over SSL, you may want to consider setting a value and enabling :ref:`HTTP
  358. Strict Transport Security <http-strict-transport-security>`. Be sure to read
  359. the documentation first; enabling HSTS carelessly can cause serious,
  360. irreversible problems.
  361. * **security.W005**: You have not set the
  362. :setting:`SECURE_HSTS_INCLUDE_SUBDOMAINS` setting to ``True``. Without this,
  363. your site is potentially vulnerable to attack via an insecure connection to a
  364. subdomain. Only set this to ``True`` if you are certain that all subdomains of
  365. your domain should be served exclusively via SSL.
  366. * **security.W006**: Your :setting:`SECURE_CONTENT_TYPE_NOSNIFF` setting is not
  367. set to ``True``, so your pages will not be served with an
  368. ``'x-content-type-options: nosniff'`` header. You should consider enabling
  369. this header to prevent the browser from identifying content types incorrectly.
  370. * **security.W007**: Your :setting:`SECURE_BROWSER_XSS_FILTER` setting is not
  371. set to ``True``, so your pages will not be served with an
  372. ``'x-xss-protection: 1; mode=block'`` header. You should consider enabling
  373. this header to activate the browser's XSS filtering and help prevent XSS
  374. attacks.
  375. * **security.W008**: Your :setting:`SECURE_SSL_REDIRECT` setting is not set to
  376. ``True``. Unless your site should be available over both SSL and non-SSL
  377. connections, you may want to either set this setting to ``True`` or configure
  378. a load balancer or reverse-proxy server to redirect all connections to HTTPS.
  379. * **security.W009**: Your :setting:`SECRET_KEY` has less than 50 characters or
  380. less than 5 unique characters. Please generate a long and random
  381. ``SECRET_KEY``, otherwise many of Django's security-critical features will be
  382. vulnerable to attack.
  383. * **security.W010**: You have :mod:`django.contrib.sessions` in your
  384. :setting:`INSTALLED_APPS` but you have not set
  385. :setting:`SESSION_COOKIE_SECURE` to ``True``. Using a secure-only session
  386. cookie makes it more difficult for network traffic sniffers to hijack user
  387. sessions.
  388. * **security.W011**: You have
  389. :class:`django.contrib.sessions.middleware.SessionMiddleware` in your
  390. :setting:`MIDDLEWARE_CLASSES`, but you have not set
  391. :setting:`SESSION_COOKIE_SECURE` to ``True``. Using a secure-only session
  392. cookie makes it more difficult for network traffic sniffers to hijack user
  393. sessions.
  394. * **security.W012**: :setting:`SESSION_COOKIE_SECURE` is not set to ``True``.
  395. Using a secure-only session cookie makes it more difficult for network traffic
  396. sniffers to hijack user sessions.
  397. * **security.W013**: You have :mod:`django.contrib.sessions` in your
  398. :setting:`INSTALLED_APPS`, but you have not set
  399. :setting:`SESSION_COOKIE_HTTPONLY` to ``True``. Using an ``HttpOnly`` session
  400. cookie makes it more difficult for cross-site scripting attacks to hijack user
  401. sessions.
  402. * **security.W014**: You have
  403. :class:`django.contrib.sessions.middleware.SessionMiddleware` in your
  404. :setting:`MIDDLEWARE_CLASSES`, but you have not set
  405. :setting:`SESSION_COOKIE_HTTPONLY` to ``True``. Using an ``HttpOnly`` session
  406. cookie makes it more difficult for cross-site scripting attacks to hijack user
  407. sessions.
  408. * **security.W015**: :setting:`SESSION_COOKIE_HTTPONLY` is not set to ``True``.
  409. Using an ``HttpOnly`` session cookie makes it more difficult for cross-site
  410. scripting attacks to hijack user sessions.
  411. * **security.W016**: :setting:`CSRF_COOKIE_SECURE` is not set to ``True``.
  412. Using a secure-only CSRF cookie makes it more difficult for network traffic
  413. sniffers to steal the CSRF token.
  414. * **security.W017**: :setting:`CSRF_COOKIE_HTTPONLY` is not set to ``True``.
  415. Using an ``HttpOnly`` CSRF cookie makes it more difficult for cross-site
  416. scripting attacks to steal the CSRF token.
  417. * **security.W018**: You should not have :setting:`DEBUG` set to ``True`` in
  418. deployment.
  419. * **security.W019**: You have
  420. :class:`django.middleware.clickjacking.XFrameOptionsMiddleware` in your
  421. :setting:`MIDDLEWARE_CLASSES`, but :setting:`X_FRAME_OPTIONS` is not set to
  422. ``'DENY'``. The default is ``'SAMEORIGIN'``, but unless there is a good reason
  423. for your site to serve other parts of itself in a frame, you should change
  424. it to ``'DENY'``.
  425. Sites
  426. -----
  427. The following checks are performed on any model using a
  428. :class:`~django.contrib.sites.managers.CurrentSiteManager`:
  429. * **sites.E001**: ``CurrentSiteManager`` could not find a field named
  430. ``<field name>``.
  431. * **sites.E002**: ``CurrentSiteManager`` cannot use ``<field>`` as it is not a
  432. ``ForeignKey`` or ``ManyToManyField``.
  433. Database
  434. --------
  435. MySQL
  436. ~~~~~
  437. If you're using MySQL, the following checks will be performed:
  438. * **mysql.E001**: MySQL does not allow unique ``CharField``\s to have a
  439. ``max_length`` > 255.