|
1 |
| -module github.com/fireeye/gocrack |
| 1 | +module github.com/mandiant/gocrack |
2 | 2 |
|
3 |
| -go 1.12 |
| 3 | +go 1.20 |
| 4 | + |
| 5 | +require ( |
| 6 | + github.com/asdine/storm v0.0.0-20190418133842-e0f77eada154 |
| 7 | + github.com/gin-contrib/cors v1.3.1 |
| 8 | + github.com/gin-gonic/gin v1.7.7 |
| 9 | + github.com/google/uuid v1.3.0 |
| 10 | + github.com/gorilla/csrf v1.7.0 |
| 11 | + github.com/mandiant/gocat/v6 v6.1.0 |
| 12 | + github.com/nightlyone/lockfile v0.0.0-20170804114028-6a197d5ea611 |
| 13 | + github.com/prometheus/client_golang v1.8.0 |
| 14 | + github.com/prometheus/client_model v0.2.0 |
| 15 | + github.com/rs/zerolog v1.20.0 |
| 16 | + github.com/shirou/gopsutil v0.0.0-20170510024726-b6da2bd76e7d |
| 17 | + github.com/stretchr/testify v1.7.0 |
| 18 | + github.com/tankbusta/gzip v0.0.0-20171023233440-5ea045a82e8f |
| 19 | + github.com/tankbusta/hashvalidate v0.11.1 |
| 20 | + github.com/tchap/go-exchange v0.0.0-20141009085351-ebe3feb493da |
| 21 | + golang.org/x/crypto v0.0.0-20211209193657-4570a0811e8b |
| 22 | + gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df |
| 23 | + gopkg.in/ldap.v2 v2.5.1 |
| 24 | + gopkg.in/square/go-jose.v2 v2.5.1 |
| 25 | + gopkg.in/yaml.v2 v2.4.0 |
| 26 | +) |
4 | 27 |
|
5 | 28 | require (
|
6 | 29 | github.com/DataDog/zstd v1.4.0 // indirect
|
7 | 30 | github.com/Sereal/Sereal v0.0.0-20190606082811-cf1bab6c7a3a // indirect
|
8 | 31 | github.com/StackExchange/wmi v0.0.0-20190523213315-cbe66965904d // indirect
|
9 |
| - github.com/asdine/storm v0.0.0-20190418133842-e0f77eada154 |
10 |
| - github.com/fireeye/gocat v0.0.0-20190613212338-ce97d32213d0 |
11 |
| - github.com/gin-contrib/cors v1.3.0 |
| 32 | + github.com/beorn7/perks v1.0.1 // indirect |
| 33 | + github.com/cespare/xxhash/v2 v2.1.1 // indirect |
| 34 | + github.com/davecgh/go-spew v1.1.1 // indirect |
12 | 35 | github.com/gin-contrib/sse v0.1.0 // indirect
|
13 |
| - github.com/gin-gonic/gin v1.4.0 |
14 | 36 | github.com/go-ole/go-ole v1.2.4 // indirect
|
| 37 | + github.com/go-playground/locales v0.14.0 // indirect |
| 38 | + github.com/go-playground/universal-translator v0.18.0 // indirect |
| 39 | + github.com/go-playground/validator/v10 v10.9.0 // indirect |
| 40 | + github.com/golang/protobuf v1.5.2 // indirect |
15 | 41 | github.com/golang/snappy v0.0.1 // indirect
|
16 |
| - github.com/gorilla/csrf v1.5.1 |
17 |
| - github.com/kr/pty v1.1.5 // indirect |
18 |
| - github.com/mattn/go-isatty v0.0.8 // indirect |
19 |
| - github.com/nightlyone/lockfile v0.0.0-20170804114028-6a197d5ea611 |
20 |
| - github.com/prometheus/client_golang v0.9.4 |
21 |
| - github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90 |
22 |
| - github.com/rs/zerolog v1.14.3 |
23 |
| - github.com/satori/go.uuid v0.0.0-20160713180306-0aa62d5ddceb |
24 |
| - github.com/shirou/gopsutil v0.0.0-20170510024726-b6da2bd76e7d |
| 42 | + github.com/gorilla/securecookie v1.1.1 // indirect |
| 43 | + github.com/json-iterator/go v1.1.12 // indirect |
| 44 | + github.com/leodido/go-urn v1.2.1 // indirect |
| 45 | + github.com/mattn/go-isatty v0.0.14 // indirect |
| 46 | + github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect |
| 47 | + github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect |
| 48 | + github.com/modern-go/reflect2 v1.0.2 // indirect |
| 49 | + github.com/pkg/errors v0.9.1 // indirect |
| 50 | + github.com/pmezard/go-difflib v1.0.0 // indirect |
| 51 | + github.com/prometheus/common v0.14.0 // indirect |
| 52 | + github.com/prometheus/procfs v0.2.0 // indirect |
25 | 53 | github.com/shirou/w32 v0.0.0-20160930032740-bb4de0191aa4 // indirect
|
26 |
| - github.com/stretchr/objx v0.2.0 // indirect |
27 |
| - github.com/stretchr/testify v1.3.0 |
28 |
| - github.com/tankbusta/gzip v0.0.0-20171023233440-5ea045a82e8f |
29 |
| - github.com/tchap/go-exchange v0.0.0-20141009085351-ebe3feb493da |
30 |
| - github.com/tchap/go-patricia v2.2.6+incompatible // indirect |
| 54 | + github.com/tchap/go-patricia v2.3.0+incompatible // indirect |
| 55 | + github.com/ugorji/go/codec v1.2.6 // indirect |
31 | 56 | github.com/vmihailenco/msgpack v4.0.4+incompatible // indirect
|
32 | 57 | go.etcd.io/bbolt v1.3.3 // indirect
|
33 |
| - golang.org/x/crypto v0.0.0-20190611184440-5c40567a22f8 |
34 |
| - golang.org/x/net v0.0.0-20190611141213-3f473d35a33a // indirect |
35 |
| - golang.org/x/sys v0.0.0-20190610200419-93c9922d18ae // indirect |
36 |
| - golang.org/x/tools v0.0.0-20190611222205-d73e1c7e250b // indirect |
| 58 | + golang.org/x/sys v0.0.0-20211213223007-03aa0b5f6827 // indirect |
| 59 | + golang.org/x/text v0.3.7 // indirect |
37 | 60 | google.golang.org/appengine v1.6.1 // indirect
|
| 61 | + google.golang.org/protobuf v1.27.1 // indirect |
38 | 62 | gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect
|
39 | 63 | gopkg.in/asn1-ber.v1 v1.0.0-20150924051756-4e86f4367175 // indirect
|
40 |
| - gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df |
41 |
| - gopkg.in/ldap.v2 v2.5.1 |
42 |
| - gopkg.in/square/go-jose.v2 v2.3.1 |
43 |
| - gopkg.in/yaml.v2 v2.2.2 |
| 64 | + gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect |
44 | 65 | )
|
0 commit comments