This repository has been archived by the owner on Oct 2, 2022. It is now read-only.
generated from ContainerSSH/library-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
45 lines (40 loc) · 1.68 KB
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
module github.com/containerssh/authintegration
go 1.14
require (
github.com/containerssh/auth v1.0.0
github.com/containerssh/geoip v1.0.0
github.com/containerssh/http v1.0.0
github.com/containerssh/log v1.0.0
github.com/containerssh/metrics v1.0.0
github.com/containerssh/service v1.0.0
github.com/containerssh/sshserver v1.0.0
github.com/containerssh/structutils v1.0.0
github.com/imdario/mergo v0.3.12 // indirect
github.com/mattn/go-shellwords v1.0.11 // indirect
github.com/stretchr/testify v1.7.0
golang.org/x/crypto v0.0.0-20210220033148-5ea612d1eb83
)
// Fixes CVE-2020-9283
replace (
golang.org/x/crypto v0.0.0-20190308221718-c2843e01d9a2 => golang.org/x/crypto v0.0.0-20210220033148-5ea612d1eb83
golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550 => golang.org/x/crypto v0.0.0-20210220033148-5ea612d1eb83
golang.org/x/crypto v0.0.0-20200220183623-bac4c82f6975 => golang.org/x/crypto v0.0.0-20210220033148-5ea612d1eb83
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9 => golang.org/x/crypto v0.0.0-20210220033148-5ea612d1eb83
)
// Fixes CVE-2020-14040
replace (
golang.org/x/text v0.3.0 => golang.org/x/text v0.3.3
golang.org/x/text v0.3.1 => golang.org/x/text v0.3.3
golang.org/x/text v0.3.2 => golang.org/x/text v0.3.3
)
// Fixes CVE-2019-11254
replace (
gopkg.in/yaml.v2 v2.2.0 => gopkg.in/yaml.v2 v2.2.8
gopkg.in/yaml.v2 v2.2.1 => gopkg.in/yaml.v2 v2.2.8
gopkg.in/yaml.v2 v2.2.2 => gopkg.in/yaml.v2 v2.2.8
gopkg.in/yaml.v2 v2.2.3 => gopkg.in/yaml.v2 v2.2.8
gopkg.in/yaml.v2 v2.2.4 => gopkg.in/yaml.v2 v2.2.8
gopkg.in/yaml.v2 v2.2.5 => gopkg.in/yaml.v2 v2.2.8
gopkg.in/yaml.v2 v2.2.6 => gopkg.in/yaml.v2 v2.2.8
gopkg.in/yaml.v2 v2.2.7 => gopkg.in/yaml.v2 v2.2.8
)