forked from opendatahub-io/rest-proxy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: address the following CVE: - [CVE-2023-48795](https://www.cve.org/CVERecord?id=CVE-2023-48795): golang.org/x/crypto Authentication Bypass by Capture-replay Signed-off-by: Spolti <[email protected]>
- Loading branch information
Showing
2 changed files
with
38 additions
and
17 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 |
---|---|---|
|
@@ -24,8 +24,8 @@ require ( | |
go.uber.org/multierr v1.6.0 // indirect | ||
go.uber.org/zap v1.24.0 // indirect | ||
golang.org/x/net v0.17.0 // indirect | ||
golang.org/x/sys v0.13.0 // indirect | ||
golang.org/x/text v0.13.0 // indirect | ||
golang.org/x/sys v0.15.0 // indirect | ||
golang.org/x/text v0.14.0 // indirect | ||
google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1 // indirect | ||
gopkg.in/inf.v0 v0.9.1 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
|
@@ -36,7 +36,12 @@ require ( | |
sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect | ||
) | ||
|
||
// remove when upgrade to controller-runtime 0.15.xor apimachinery to 0.27.x | ||
// Fixes github.com/elazarl/goproxy Denial of Service (DoS) | ||
// This dependency was remove from apimachinery 0.27.0 | ||
replace k8s.io/apimachinery => k8s.io/apimachinery v0.27.0 | ||
replace ( | ||
// The x/crypto is pulled from golang.org/x/[email protected] | ||
// Fixes CVE-2023-48795 - golang.org/x/crypto Authentication Bypass by Capture-replay | ||
golang.org/x/crypto => golang.org/x/crypto v0.17.0 | ||
// remove when upgrade to controller-runtime 0.15.xor apimachinery to 0.27.x | ||
// Fixes github.com/elazarl/goproxy Denial of Service (DoS) | ||
// This dependency was remove from apimachinery 0.27.0 | ||
k8s.io/apimachinery => k8s.io/apimachinery v0.27.0 | ||
) |
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