-
Notifications
You must be signed in to change notification settings - Fork 162
/
Copy pathgo.mod
78 lines (75 loc) · 3.41 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
module github.com/dreadl0ck/netcap
go 1.13
require (
github.com/Jeffail/gabs/v2 v2.6.0
github.com/Microsoft/go-winio v0.4.16 // indirect
github.com/RoaringBitmap/roaring v0.5.5 // indirect
github.com/araddon/dateparse v0.0.0-20210207001429-0eec95c9db7e
github.com/blevesearch/bleve v1.0.14
github.com/cheggaaa/pb v1.0.29
github.com/cheggaaa/pb/v3 v3.0.6
github.com/davecgh/go-spew v1.1.1
github.com/denisbrodbeck/machineid v1.0.1
github.com/dlclark/regexp2 v1.4.0
github.com/dreadl0ck/cryptoutils v0.0.0-20200425144202-4608665a89a4
github.com/dreadl0ck/go-dpi v1.0.2
github.com/dreadl0ck/gopacket v1.1.16-0.20201228223815-140074f06498
github.com/dreadl0ck/ja3 v1.0.1-dreadl0ck-gopacket.0.20200917082239-a29743a537b2
github.com/dreadl0ck/maltego v0.0.2
github.com/dreadl0ck/material-icon-gen v0.0.0-20210214144425-b93b94838986
github.com/dreadl0ck/tlsx v1.0.1-dreadl0ck-gopacket
github.com/dsoprea/go-exif/v2 v2.0.0-20210131231135-d154f10435cc
github.com/dsoprea/go-logging v0.0.0-20200710184922-b02d349568dd // indirect
github.com/dustin/go-humanize v1.0.0
github.com/elastic/go-elasticsearch/v7 v7.13.0
github.com/evilsocket/islazy v1.10.6
github.com/fatih/color v1.10.0 // indirect
github.com/felixge/fgprof v0.9.1
github.com/fsnotify/fsnotify v1.4.9 // indirect
github.com/glycerine/go-unsnap-stream v0.0.0-20210130063903-47dfef350d96 // indirect
github.com/go-echarts/go-echarts/v2 v2.2.4
github.com/go-errors/errors v1.1.1
github.com/gogo/protobuf v1.3.2
github.com/golang/geo v0.0.0-20210211234256-740aa86cb551 // indirect
github.com/golang/snappy v0.0.2 // indirect
github.com/google/pprof v0.0.0-20210208152844-1612e9be7af6 // indirect
github.com/gopherjs/gopherjs v0.0.0-20210202160940-bed99a852dfe // indirect
github.com/imdario/mergo v0.3.11 // indirect
github.com/kevinburke/ssh_config v0.0.0-20201106050909-4977a11b4351 // indirect
github.com/klauspost/compress v1.11.7 // indirect
github.com/klauspost/pgzip v1.2.5
github.com/magefile/mage v1.11.0 // indirect
github.com/magiconair/properties v1.8.0
github.com/mattn/go-isatty v0.0.14 // indirect
github.com/mcnijman/go-emailaddress v1.1.0
github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d
github.com/namsral/flag v1.7.4-pre
github.com/nyaruka/phonenumbers v1.0.66
github.com/onsi/ginkgo v1.11.0 // indirect
github.com/onsi/gomega v1.8.1 // indirect
github.com/oschwald/maxminddb-golang v1.8.0
github.com/pkg/errors v0.9.1
github.com/prometheus/client_golang v1.9.0
github.com/prometheus/common v0.17.0 // indirect
github.com/prometheus/procfs v0.6.0 // indirect
github.com/rivo/uniseg v0.2.0 // indirect
github.com/sirupsen/logrus v1.8.0
github.com/tinylib/msgp v1.1.5 // indirect
github.com/ua-parser/uap-go v0.0.0-20210121150957-347a3497cc39
github.com/umisama/go-cpe v0.0.0-20190323060751-cdd6c3c28a23
github.com/willf/bitset v1.1.11 // indirect
github.com/xanzy/ssh-agent v0.3.0 // indirect
go.uber.org/multierr v1.6.0 // indirect
go.uber.org/zap v1.16.0
golang.org/x/crypto v0.0.0-20210220033148-5ea612d1eb83
golang.org/x/mod v0.4.1 // indirect
golang.org/x/net v0.0.0-20210220033124-5f55cee0dc0d
golang.org/x/sys v0.0.0-20220114195835-da31bd327af9 // indirect
golang.org/x/term v0.0.0-20210220032956-6a3ed077a48d // indirect
golang.org/x/tools v0.1.0 // indirect
gonum.org/v1/gonum v0.9.1
google.golang.org/protobuf v1.25.0 // indirect
gopkg.in/yaml.v2 v2.4.0
mvdan.cc/xurls/v2 v2.2.0
)
//replace github.com/dreadl0ck/maltego => ../maltego