-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
data/reports: add 2 reviewed reports
- data/reports/GO-2024-2977.yaml - data/reports/GO-2024-2978.yaml Fixes #2977 Fixes #2978 Change-Id: I6a664826f87b1dc9c586871e5ade8683b31e4ccd Reviewed-on: https://go-review.googlesource.com/c/vulndb/+/597159 LUCI-TryBot-Result: Go LUCI <[email protected]> Reviewed-by: Tim King <[email protected]>
- Loading branch information
Showing
4 changed files
with
183 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
{ | ||
"schema_version": "1.3.1", | ||
"id": "GO-2024-2977", | ||
"modified": "0001-01-01T00:00:00Z", | ||
"published": "0001-01-01T00:00:00Z", | ||
"aliases": [ | ||
"CVE-2024-6284", | ||
"GHSA-qjvf-8748-9w7h" | ||
], | ||
"summary": "IP addresses were encoded in the wrong byte order in github.com/google/nftables", | ||
"details": "IP addresses were encoded in the wrong byte order, resulting in an nftables configuration which did not work as intended (might block or not block the desired addresses).", | ||
"affected": [ | ||
{ | ||
"package": { | ||
"name": "github.com/google/nftables", | ||
"ecosystem": "Go" | ||
}, | ||
"ranges": [ | ||
{ | ||
"type": "SEMVER", | ||
"events": [ | ||
{ | ||
"introduced": "0.1.0" | ||
}, | ||
{ | ||
"fixed": "0.2.0" | ||
} | ||
] | ||
} | ||
], | ||
"ecosystem_specific": { | ||
"imports": [ | ||
{ | ||
"path": "github.com/google/nftables", | ||
"symbols": [ | ||
"Conn.AddSet" | ||
] | ||
} | ||
] | ||
} | ||
} | ||
], | ||
"references": [ | ||
{ | ||
"type": "ADVISORY", | ||
"url": "https://github.com/advisories/GHSA-qjvf-8748-9w7h" | ||
}, | ||
{ | ||
"type": "FIX", | ||
"url": "https://github.com/google/nftables/commit/b1f901b05510bed05c232c5049f68d1511b56a19" | ||
}, | ||
{ | ||
"type": "REPORT", | ||
"url": "https://github.com/google/nftables/issues/225" | ||
}, | ||
{ | ||
"type": "WEB", | ||
"url": "https://bugs.launchpad.net/ubuntu/+source/crowdsec-firewall-bouncer/+bug/2069596" | ||
}, | ||
{ | ||
"type": "WEB", | ||
"url": "https://github.com/crowdsecurity/cs-firewall-bouncer/issues/368" | ||
} | ||
], | ||
"database_specific": { | ||
"url": "https://pkg.go.dev/vuln/GO-2024-2977", | ||
"review_status": "REVIEWED" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
{ | ||
"schema_version": "1.3.1", | ||
"id": "GO-2024-2978", | ||
"modified": "0001-01-01T00:00:00Z", | ||
"published": "0001-01-01T00:00:00Z", | ||
"aliases": [ | ||
"GHSA-xr7q-jx4m-x55m" | ||
], | ||
"summary": "Private tokens could appear in logs if context containing gRPC metadata is logged in google.golang.org/grpc", | ||
"details": "If applications print or log a context containing gRPC metadata, the output will contain all the metadata, which may include private information. This represents a potential PII concern.", | ||
"affected": [ | ||
{ | ||
"package": { | ||
"name": "google.golang.org/grpc", | ||
"ecosystem": "Go" | ||
}, | ||
"ranges": [ | ||
{ | ||
"type": "SEMVER", | ||
"events": [ | ||
{ | ||
"introduced": "1.64.0" | ||
}, | ||
{ | ||
"fixed": "1.64.1" | ||
} | ||
] | ||
} | ||
], | ||
"ecosystem_specific": { | ||
"imports": [ | ||
{ | ||
"path": "google.golang.org/grpc/metadata", | ||
"symbols": [ | ||
"MD.String" | ||
] | ||
} | ||
] | ||
} | ||
} | ||
], | ||
"references": [ | ||
{ | ||
"type": "ADVISORY", | ||
"url": "https://github.com/grpc/grpc-go/security/advisories/GHSA-xr7q-jx4m-x55m" | ||
}, | ||
{ | ||
"type": "FIX", | ||
"url": "https://github.com/grpc/grpc-go/commit/ab292411ddc0f3b7a7786754d1fe05264c3021eb" | ||
} | ||
], | ||
"database_specific": { | ||
"url": "https://pkg.go.dev/vuln/GO-2024-2978", | ||
"review_status": "REVIEWED" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
id: GO-2024-2977 | ||
modules: | ||
- module: github.com/google/nftables | ||
versions: | ||
- introduced: 0.1.0 | ||
- fixed: 0.2.0 | ||
vulnerable_at: 0.1.0 | ||
packages: | ||
- package: github.com/google/nftables | ||
symbols: | ||
- Conn.AddSet | ||
skip_fix: 'errors of the form ''undefined: unix.*''' | ||
summary: IP addresses were encoded in the wrong byte order in github.com/google/nftables | ||
description: |- | ||
IP addresses were encoded in the wrong byte order, resulting in an nftables | ||
configuration which did not work as intended (might block or not block the | ||
desired addresses). | ||
cves: | ||
- CVE-2024-6284 | ||
ghsas: | ||
- GHSA-qjvf-8748-9w7h | ||
references: | ||
- advisory: https://github.com/advisories/GHSA-qjvf-8748-9w7h | ||
- fix: https://github.com/google/nftables/commit/b1f901b05510bed05c232c5049f68d1511b56a19 | ||
- report: https://github.com/google/nftables/issues/225 | ||
- web: https://bugs.launchpad.net/ubuntu/+source/crowdsec-firewall-bouncer/+bug/2069596 | ||
- web: https://github.com/crowdsecurity/cs-firewall-bouncer/issues/368 | ||
source: | ||
id: GHSA-qjvf-8748-9w7h | ||
created: 2024-07-08T13:23:25.436858-04:00 | ||
review_status: REVIEWED |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
id: GO-2024-2978 | ||
modules: | ||
- module: google.golang.org/grpc | ||
versions: | ||
- introduced: 1.64.0 | ||
- fixed: 1.64.1 | ||
vulnerable_at: 1.64.0 | ||
packages: | ||
- package: google.golang.org/grpc/metadata | ||
symbols: | ||
- MD.String | ||
summary: |- | ||
Private tokens could appear in logs if context containing gRPC metadata is | ||
logged in google.golang.org/grpc | ||
description: | | ||
If applications print or log a context containing gRPC metadata, the | ||
output will contain all the metadata, which may include private | ||
information. This represents a potential PII concern. | ||
ghsas: | ||
- GHSA-xr7q-jx4m-x55m | ||
references: | ||
- advisory: https://github.com/grpc/grpc-go/security/advisories/GHSA-xr7q-jx4m-x55m | ||
- fix: https://github.com/grpc/grpc-go/commit/ab292411ddc0f3b7a7786754d1fe05264c3021eb | ||
source: | ||
id: GHSA-xr7q-jx4m-x55m | ||
created: 2024-07-08T13:23:23.725948-04:00 | ||
review_status: REVIEWED |