Skip to content

Commit 151ce50

Browse files
authored
Merge pull request #1626 from kubernetes-sigs/CVE-2023-48795
fix: CVE-2023-48795
2 parents d519073 + 0c3d71d commit 151ce50

File tree

9 files changed

+107
-22
lines changed

9 files changed

+107
-22
lines changed

.trivyignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
CVE-2023-48795

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ require (
136136
go.uber.org/atomic v1.10.0 // indirect
137137
go.uber.org/multierr v1.11.0 // indirect
138138
go.uber.org/zap v1.19.0 // indirect
139-
golang.org/x/crypto v0.16.0 // indirect
139+
golang.org/x/crypto v0.17.0 // indirect
140140
golang.org/x/exp v0.0.0-20230905200255-921286631fa9 // indirect
141141
golang.org/x/mod v0.13.0 // indirect
142142
golang.org/x/oauth2 v0.11.0 // indirect

go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -477,8 +477,8 @@ golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPh
477477
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc=
478478
golang.org/x/crypto v0.0.0-20220722155217-630584e8d5aa/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4=
479479
golang.org/x/crypto v0.6.0/go.mod h1:OFC/31mSvZgRz0V1QTNCzfAI1aIRzbiufJtkMIlEp58=
480-
golang.org/x/crypto v0.16.0 h1:mMMrFzRSCF0GvB7Ne27XVtVAaXLrPmgPC7/v0tkwHaY=
481-
golang.org/x/crypto v0.16.0/go.mod h1:gCAAfMLgwOJRpTjQ2zCCt2OcSfYMTeZVSRtQlPC7Nq4=
480+
golang.org/x/crypto v0.17.0 h1:r8bRNjWL3GshPW3gkd+RpvzWrZAwPS49OmTGZ/uhM4k=
481+
golang.org/x/crypto v0.17.0/go.mod h1:gCAAfMLgwOJRpTjQ2zCCt2OcSfYMTeZVSRtQlPC7Nq4=
482482
golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=
483483
golang.org/x/exp v0.0.0-20190306152737-a1d7652674e8/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=
484484
golang.org/x/exp v0.0.0-20190510132918-efd6b22b2522/go.mod h1:ZjyILWgesfNpC6sMxTJOJm9Kp84zZh5NQWvqDGG3Qr8=

vendor/golang.org/x/crypto/ssh/channel.go

+20-8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/golang.org/x/crypto/ssh/client.go

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/golang.org/x/crypto/ssh/handshake.go

+52-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/golang.org/x/crypto/ssh/server.go

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/golang.org/x/crypto/ssh/transport.go

+27-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

vendor/modules.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -552,7 +552,7 @@ go.uber.org/zap/internal/color
552552
go.uber.org/zap/internal/exit
553553
go.uber.org/zap/zapcore
554554
go.uber.org/zap/zapgrpc
555-
# golang.org/x/crypto v0.16.0
555+
# golang.org/x/crypto v0.17.0
556556
## explicit; go 1.18
557557
golang.org/x/crypto/blowfish
558558
golang.org/x/crypto/chacha20

0 commit comments

Comments
 (0)