data/reports: run fix on GO-2022-1148.yaml

This required running fix with an older version of Go because
some dependencies only work with <1.19.

Aliases: CVE-2022-23492, GHSA-j7qp-mfxf-8xjw

Updates golang/vulndb#1148

Change-Id: I5d3ada1b59f57f3f72157a367ff69028540ec05b
Reviewed-on: https://go-review.googlesource.com/c/vulndb/+/465815
Run-TryBot: Tatiana Bradley <tatianabradley@google.com>
Reviewed-by: Tim King <taking@google.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
This commit is contained in:
Tatiana Bradley 2023-02-06 21:39:25 +00:00
Родитель d7fb56a3ff
Коммит 0c997e2d8e
2 изменённых файлов: 27 добавлений и 13 удалений

Просмотреть файл

@ -6,7 +6,7 @@
"CVE-2022-23492", "CVE-2022-23492",
"GHSA-j7qp-mfxf-8xjw" "GHSA-j7qp-mfxf-8xjw"
], ],
"details": "go-libp2p is vulnerable to targeted resource exhaustion attacks. These attacks target libp2p's connection,stream, peer, and memory management. An attacker can cause the allocation of large amounts of memory, ultimately leading to the process getting killed by the host's operating system. While a connection manager tasked with keeping the number of connections within manageable limits has been part of go-libp2p, this component was designed to handle the regular churn of peers, not a targeted resource exhaustion attack.\n\nIt's recommend that you update to v0.21.0 onwards as you'll get some useful functionality that will help in production environments like better metrics around resource usage, Grafana dashboards around resource usage, allow list support, and default autoscaling limits.", "details": "go-libp2p is vulnerable to targeted resource exhaustion attacks.\n\nThese attacks target libp2p's connection, stream, peer, and memory management. An attacker can cause the allocation of large amounts of memory ultimately leading to the process getting killed by the host's operating system.\n\nWhile a connection manager tasked with keeping the number of connections within manageable limits has been part of go-libp2p, this component was designed to handle the regular churn of peers, not a targeted resource exhaustion attack.\n\nIt's recommend to update to v0.21.0 onwards to get some useful functionality that will help in production environments like better metrics around resource usage, Grafana dashboards around resource usage, allow list support, and default autoscaling limits.",
"affected": [ "affected": [
{ {
"package": { "package": {
@ -34,7 +34,12 @@
{ {
"path": "github.com/libp2p/go-libp2p", "path": "github.com/libp2p/go-libp2p",
"symbols": [ "symbols": [
"New" "DefaultStaticRelays",
"Muxer",
"New",
"NewWithoutDefaults",
"Security",
"Transport"
] ]
}, },
{ {

Просмотреть файл

@ -7,6 +7,12 @@ modules:
- package: github.com/libp2p/go-libp2p - package: github.com/libp2p/go-libp2p
symbols: symbols:
- New - New
derived_symbols:
- DefaultStaticRelays
- Muxer
- NewWithoutDefaults
- Security
- Transport
- package: github.com/libp2p/go-libp2p/config - package: github.com/libp2p/go-libp2p/config
symbols: symbols:
- MuxerConstructor - MuxerConstructor
@ -52,18 +58,21 @@ modules:
- Service.DirectConnect - Service.DirectConnect
- netNotifiee.Connected - netNotifiee.Connected
description: | description: |
go-libp2p is vulnerable to targeted resource exhaustion attacks. These go-libp2p is vulnerable to targeted resource exhaustion attacks.
attacks target libp2p's connection,stream, peer, and memory management. An
attacker can cause the allocation of large amounts of memory, ultimately
leading to the process getting killed by the host's operating system. While
a connection manager tasked with keeping the number of connections within
manageable limits has been part of go-libp2p, this component was designed
to handle the regular churn of peers, not a targeted resource exhaustion
attack.
It's recommend that you update to v0.21.0 onwards as you'll get some useful These attacks target libp2p's connection, stream, peer, and memory
functionality that will help in production environments like better metrics management. An attacker can cause the allocation of large amounts of memory
around resource usage, Grafana dashboards around resource usage, allow list ultimately leading to the process getting killed by the host's operating
system.
While a connection manager tasked with keeping the number of connections
within manageable limits has been part of go-libp2p, this component was
designed to handle the regular churn of peers, not a targeted resource
exhaustion attack.
It's recommend to update to v0.21.0 onwards to get some useful functionality
that will help in production environments like better metrics around
resource usage, Grafana dashboards around resource usage, allow list
support, and default autoscaling limits. support, and default autoscaling limits.
cves: cves:
- CVE-2022-23492 - CVE-2022-23492