forked from rabbitstack/fibratus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
89 lines (85 loc) · 3.49 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
79
80
81
82
83
84
85
86
87
88
89
module github.com/rabbitstack/fibratus
require (
github.com/Masterminds/sprig/v3 v3.2.2
github.com/Microsoft/go-winio v0.4.14
github.com/antchfx/htmlquery v1.2.5
github.com/briandowns/spinner v1.12.0
github.com/dustin/go-humanize v1.0.0
github.com/enescakir/emoji v1.0.0
github.com/gammazero/deque v0.2.1
github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e
github.com/hashicorp/go-version v1.2.1
github.com/hillu/go-yara/v4 v4.2.4
github.com/jedib0t/go-pretty/v6 v6.2.1
github.com/lithammer/fuzzysearch v1.1.2
github.com/magiconair/properties v1.8.1
github.com/mitchellh/mapstructure v1.4.1
github.com/olivere/elastic/v7 v7.0.20
github.com/phayes/freeport v0.0.0-20180830031419-95f893ade6f2
github.com/pkg/errors v0.9.1
github.com/qmuntal/stateless v1.6.0
github.com/rifflock/lfshook v0.0.0-20180920164130-b9218ef580f5
github.com/saferwall/pe v1.4.4
github.com/sirupsen/logrus v1.9.3
github.com/spf13/cobra v0.0.3
github.com/spf13/pflag v1.0.5
github.com/spf13/viper v1.6.2
github.com/streadway/amqp v1.0.0
github.com/stretchr/testify v1.8.1
github.com/valyala/bytebufferpool v1.0.0
github.com/valyala/gozstd v1.11.0
github.com/xeipuuv/gojsonschema v1.2.0
github.com/yuin/goldmark v1.5.2
go.mozilla.org/pkcs7 v0.0.0-20210826202110-33d05740a352
golang.org/x/sys v0.13.0
golang.org/x/text v0.13.0
golang.org/x/time v0.3.0
gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df
gopkg.in/natefinch/lumberjack.v2 v2.0.0
gopkg.in/yaml.v3 v3.0.1
)
require (
github.com/bits-and-blooms/bitset v1.13.0 // indirect
github.com/cenkalti/backoff/v4 v4.3.0 // indirect
github.com/rivo/uniseg v0.4.2 // indirect
github.com/rogpeppe/go-internal v1.11.0 // indirect
golang.org/x/arch v0.6.0 // indirect
)
require (
github.com/Masterminds/goutils v1.1.1 // indirect
github.com/Masterminds/semver/v3 v3.1.1 // indirect
github.com/antchfx/xpath v1.2.1 // indirect
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
github.com/edsrzf/mmap-go v1.1.0 // indirect
github.com/fatih/color v1.7.0 // indirect
github.com/fsnotify/fsnotify v1.4.7 // indirect
github.com/google/uuid v1.1.1 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/huandu/xstrings v1.3.1 // indirect
github.com/imdario/mergo v0.3.11 // indirect
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/josharian/intern v1.0.0 // indirect
github.com/mailru/easyjson v0.7.6 // indirect
github.com/mattn/go-colorable v0.1.2 // indirect
github.com/mattn/go-isatty v0.0.16 // indirect
github.com/mattn/go-runewidth v0.0.14 // indirect
github.com/mitchellh/copystructure v1.0.0 // indirect
github.com/mitchellh/reflectwalk v1.0.0 // indirect
github.com/pelletier/go-toml v1.2.0 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/shopspring/decimal v1.2.0 // indirect
github.com/spf13/afero v1.1.2 // indirect
github.com/spf13/cast v1.3.1 // indirect
github.com/spf13/jwalterweatherman v1.0.0 // indirect
github.com/stretchr/objx v0.5.0 // indirect
github.com/subosito/gotenv v1.2.0 // indirect
github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f // indirect
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
golang.org/x/crypto v0.14.0 // indirect
golang.org/x/net v0.17.0 // indirect
gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect
gopkg.in/ini.v1 v1.51.0 // indirect
gopkg.in/yaml.v2 v2.3.0 // indirect
www.velocidex.com/golang/go-ntfs v0.1.2-0.20230922133004-33eadbbaf1f2
)
go 1.21