Skip to content

Commit

Permalink
data/reports: update GO-2023-2102.yaml
Browse files Browse the repository at this point in the history
Move CVE-2023-44487 (catch-all for HTTP/2 rapid reset)
from "cves" to "related".

Updates #2102

Change-Id: Ic420f27cb55ab46f131957dcf941744aae3e0af0
Reviewed-on: https://go-review.googlesource.com/c/vulndb/+/545204
Reviewed-by: Damien Neil <[email protected]>
LUCI-TryBot-Result: Go LUCI <[email protected]>
  • Loading branch information
tatianab committed Nov 27, 2023
1 parent 6272ba4 commit 6b74168
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 3 additions & 1 deletion data/osv/GO-2023-2102.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,12 @@
"modified": "0001-01-01T00:00:00Z",
"published": "0001-01-01T00:00:00Z",
"aliases": [
"CVE-2023-44487",
"CVE-2023-39325",
"GHSA-4374-p667-p6c8"
],
"related": [
"CVE-2023-44487"
],
"summary": "HTTP/2 rapid reset can cause excessive work in net/http",
"details": "A malicious HTTP/2 client which rapidly creates requests and immediately resets them can cause excessive server resource consumption. While the total number of requests is bounded by the http2.Server.MaxConcurrentStreams setting, resetting an in-progress request allows the attacker to create a new request while the existing one is still executing.\n\nWith the fix applied, HTTP/2 servers now bound the number of simultaneously executing handler goroutines to the stream concurrency limit (MaxConcurrentStreams). New requests arriving when at the limit (which can only happen after the client has reset an existing, in-flight request) will be queued until a handler exits. If the request queue grows too large, the server will terminate the connection.\n\nThis issue is also fixed in golang.org/x/net/http2 for users manually configuring HTTP/2.\n\nThe default stream concurrency limit is 250 streams (requests) per HTTP/2 connection. This value may be adjusted using the golang.org/x/net/http2 package; see the Server.MaxConcurrentStreams setting and the ConfigureServer function.",
"affected": [
Expand Down
4 changes: 2 additions & 2 deletions data/reports/GO-2023-2102.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,10 +57,10 @@ description: |-
The default stream concurrency limit is 250 streams (requests) per HTTP/2
connection. This value may be adjusted using the golang.org/x/net/http2 package;
see the Server.MaxConcurrentStreams setting and the ConfigureServer function.
cves:
- CVE-2023-44487
ghsas:
- GHSA-4374-p667-p6c8
related:
- CVE-2023-44487
references:
- report: https://go.dev/issue/63417
- fix: https://go.dev/cl/534215
Expand Down

0 comments on commit 6b74168

Please sign in to comment.