You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**Please note that public Github issues are open for everyone to see!**
6
+
7
+
If you believe you are found a problem in Gunicorn software, examples or documentation, we encourage you to send your report privately via email, or via Github using the *Report a vulnerability* button in the [Security](https://github.com/benoitc/gunicorn/security) section.
8
+
9
+
## Supported Releases
10
+
11
+
At this time, **only the latest release** receives any security attention whatsoever.
12
+
13
+
| Version | Status |
14
+
| ------- | ------------------ |
15
+
| latest release |:white_check_mark:|
16
+
| 21.2.0 |:x:|
17
+
| 20.0.0 |:x:|
18
+
| < 20.0 |:x:|
19
+
20
+
## Python Versions
21
+
22
+
Gunicorn runs on Python 3.7+, we *highly recommend* the latest release of a [supported series](https://devguide.python.org/version/) and will not prioritize issues exclusively affecting in EoL environments.
Copy file name to clipboardExpand all lines: docs/source/2023-news.rst
+22
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,28 @@
2
2
Changelog - 2023
3
3
================
4
4
5
+
22.0.0 - TBDTBDTBD
6
+
==================
7
+
8
+
- fix numerous security vulnerabilites in HTTP parser (closing some request smuggling vectors)
9
+
- parsing additional requests is no longer attempted past unsupported request framing
10
+
- on HTTP versions < 1.1 support for chunked transfer is refused (only used in exploits)
11
+
- requests conflicting configured or passed SCRIPT_NAME now produce a verbose error
12
+
- Trailer fields are no longer inspected for headers indicating secure scheme
13
+
14
+
** Breaking changes **
15
+
16
+
- the limitations on valid characters in the HTTP method have been bounded to Internet Standards
17
+
- requests specifying unsupported transfer coding (order) are refused by default (rare)
18
+
- HTTP methods are no longer casefolded by default (IANA method registry contains none affacted)
19
+
- HTTP methods containing the number sign (#) are no longer accepted by default (rare)
20
+
- HTTP versions < 1.0 or >= 2.0 are no longer accepted by default (rare, only HTTP/1.1 is supported)
21
+
- HTTP versions consisting of multiple digits or containing a prefix/suffix are no longer accepted
22
+
- HTTP header field names Gunicorn cannot safely map to variables are silently dropped, as in other software
23
+
- HTTP headers with empty field name are refused by default (no legitimate use cases, used in exploits)
24
+
- requests with both Transfer-Encoding and Content-Length are refused by default (such a message might indicate an attempt to perform request smuggling)
25
+
- empty transfer codings are no longer permitted (reportedly seen with really old & broken proxies)
0 commit comments