Skip to content

Commit 0fe2e21

Browse files
committedNov 21, 2022
Supporting Golang 1.18
1 parent e050b22 commit 0fe2e21

File tree

4 files changed

+51
-439
lines changed

4 files changed

+51
-439
lines changed
 

‎go.mod

+36-32
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,45 @@
1-
//module github.com/Ne0nd0g/merlin
21
module kubesploit
32

3+
go 1.18
4+
45
require (
5-
github.com/CUCyber/ja3transport v0.0.0-20191126031250-d2ab5557668f // indirect
6-
github.com/LDCS/genutil v0.0.0-20160229091257-bdd07589156f // indirect
76
github.com/LDCS/qslinux v0.0.0-20160229091100-a234189e8187
87
github.com/Ne0nd0g/ja3transport v0.0.0-20200203013218-e81e31892d84
9-
github.com/chzyer/logex v1.1.10 // indirect
10-
github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e
11-
github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1 // indirect
8+
github.com/chzyer/readline v1.5.1
129
github.com/cretz/gopaque v0.1.0
13-
github.com/fatih/color v1.7.0
14-
github.com/golang/protobuf v1.4.2 // indirect
15-
github.com/google/go-cmp v0.5.1 // indirect
16-
github.com/kr/pretty v0.2.0 // indirect
17-
github.com/lucas-clemente/quic-go v0.17.3
18-
github.com/marten-seemann/qtls v0.10.0 // indirect
19-
github.com/mattn/go-colorable v0.1.2 // indirect
20-
github.com/mattn/go-runewidth v0.0.4 // indirect
21-
github.com/mattn/go-shellwords v1.0.5
22-
github.com/olekukonko/tablewriter v0.0.1
23-
github.com/onsi/ginkgo v1.12.0 // indirect
24-
github.com/onsi/gomega v1.9.0 // indirect
10+
github.com/fatih/color v1.13.0
11+
github.com/lucas-clemente/quic-go v0.31.0
12+
github.com/mattn/go-shellwords v1.0.12
13+
github.com/olekukonko/tablewriter v0.0.5
2514
github.com/satori/go.uuid v1.2.0
26-
github.com/stretchr/testify v1.6.1 // indirect
27-
github.com/traefik/yaegi v0.9.2
28-
go.dedis.ch/kyber/v3 v3.0.12
29-
golang.org/x/crypto v0.0.0-20200709230013-948cd5f35899
30-
golang.org/x/net v0.0.0-20200904194848-62affa334b73
31-
golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208
32-
golang.org/x/sys v0.0.0-20200909081042-eff7692f9009
33-
golang.org/x/text v0.3.2 // indirect
34-
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
35-
google.golang.org/protobuf v1.25.0 // indirect
36-
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
37-
gopkg.in/square/go-jose.v2 v2.3.1
38-
gopkg.in/yaml.v2 v2.3.0
15+
github.com/traefik/yaegi v0.14.3
16+
go.dedis.ch/kyber/v3 v3.0.14
17+
golang.org/x/crypto v0.3.0
18+
golang.org/x/net v0.2.0
19+
golang.org/x/sync v0.1.0
20+
golang.org/x/sys v0.2.0
21+
gopkg.in/square/go-jose.v2 v2.6.0
22+
gopkg.in/yaml.v2 v2.4.0
3923
)
4024

41-
go 1.14
25+
require (
26+
github.com/CUCyber/ja3transport v0.0.0-20201031204932-8a22ac8ab5d7 // indirect
27+
github.com/LDCS/genutil v0.0.0-20160229091257-bdd07589156f // indirect
28+
github.com/go-task/slim-sprig v0.0.0-20210107165309-348f09dbbbc0 // indirect
29+
github.com/golang/mock v1.6.0 // indirect
30+
github.com/google/pprof v0.0.0-20210407192527-94a9f03dee38 // indirect
31+
github.com/kr/pretty v0.3.1 // indirect
32+
github.com/marten-seemann/qpack v0.3.0 // indirect
33+
github.com/marten-seemann/qtls-go1-18 v0.1.3 // indirect
34+
github.com/marten-seemann/qtls-go1-19 v0.1.1 // indirect
35+
github.com/mattn/go-colorable v0.1.9 // indirect
36+
github.com/mattn/go-isatty v0.0.14 // indirect
37+
github.com/mattn/go-runewidth v0.0.9 // indirect
38+
github.com/onsi/ginkgo/v2 v2.2.0 // indirect
39+
github.com/refraction-networking/utls v0.0.0-20200820030103-33a29038e742 // indirect
40+
go.dedis.ch/fixbuf v1.0.3 // indirect
41+
golang.org/x/exp v0.0.0-20220722155223-a9213eeb770e // indirect
42+
golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4 // indirect
43+
golang.org/x/text v0.4.0 // indirect
44+
golang.org/x/tools v0.1.12 // indirect
45+
)

0 commit comments

Comments
 (0)
Please sign in to comment.