Changes between Version 1 and Version 2 of Ticket #21389, comment 3


Ignore:
Timestamp:
Nov 11, 2013, 6:24:25 AM (11 years ago)
Author:
Bouke Haarsma

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #21389, comment 3

    v1 v2  
    44
    55> Due to limitations imposed by Web server software on the size of HTTP header fields, combined with reasonable limits on the number of requests which may be handled by a single server process over its lifetime, this vulnerability may be difficult to exploit. Additionally, it is only present when the "USE_I18N" setting in Django is "True" and the i18n middleware component is enabled*. Nonetheless, all users of affected versions of Django are encouraged to update.
    6 
    7 Comparing the set of locales defined in `globalsettings.LANGUAGES` and Pythons' `locale_alias`, there are more locales suffering from this issue:
     6[[BR]]
     7Comparing the set of locales defined in `globalsettings.LANGUAGES` and Pythons' `locale_alias`, there are more locales suffering from this issue. The percentages show the amount of strings translated into that language.
    88{{{
    99(
    10     ('fy-nl', 'Frisian'),
    11     ('ia', 'Interlingua'),
    12     ('kk', 'Kazakh'),
    13     ('lb', 'Luxembourgish'),
    14     ('mn', 'Mongolian'),
    15     ('my', 'Burmese'),
    16     ('ne', 'Nepali'),
    17     ('os', 'Ossetic'),
    18     ('sr-latn', 'Serbian Latin'),
    19     ('sw', 'Swahili'),
    20     ('udm', 'Udmurt'),
    21     ('zh-hans', 'Simplified Chinese'),
    22     ('zh-hant', 'Traditional Chinese'),
     10    ('fy-nl', 'Frisian'),               #  2%
     11    ('ia', 'Interlingua'),              # 81%
     12    ('kk', 'Kazakh'),                   # 74%
     13    ('lb', 'Luxembourgish'),            # 25%
     14    ('mn', 'Mongolian'),                # 89%
     15    ('my', 'Burmese'),                  # 24%
     16    ('ne', 'Nepali'),                   # 78%
     17    ('os', 'Ossetic'),                  # 91%
     18    ('sr-latn', 'Serbian Latin'),       # 78%
     19    ('sw', 'Swahili'),                  # 82%
     20    ('udm', 'Udmurt'),                  # 30%
     21    ('zh-hans', 'Simplified Chinese'),  # 92%
     22    ('zh-hant', 'Traditional Chinese'), # 90%
    2323)
    2424}}}
Back to Top