Skip to content

Commit 815c261

Browse files
committed
v4.6.4: Update dependencies
1 parent cd3a133 commit 815c261

4 files changed

Lines changed: 189 additions & 563 deletions

File tree

cmd/health.go

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -165,12 +165,15 @@ func generalCheck() error {
165165
if _, err = utils.RunCommandWithErr("amass -h"); err != nil {
166166
errorBinary = append(errorBinary, "amass")
167167
}
168-
if _, err = utils.RunCommandWithErr(fmt.Sprintf("%s -h", path.Join(options.Env.BinariesFolder, "subfinder"))); err != nil {
169-
errorBinary = append(errorBinary, "subfinder")
170-
}
171-
if _, err = utils.RunCommandWithErr(fmt.Sprintf("%s -h", path.Join(options.Env.BinariesFolder, "httprobe"))); err != nil {
172-
errorBinary = append(errorBinary, "httprobe")
168+
169+
if _, err = utils.RunCommandWithErr(fmt.Sprintf("%s -h", path.Join(options.Env.BinariesFolder, "httpx"))); err != nil {
170+
errorBinary = append(errorBinary, "httpx")
173171
}
172+
173+
// if _, err = utils.RunCommandWithErr(fmt.Sprintf("%s -h", path.Join(options.Env.BinariesFolder, "httprobe"))); err != nil {
174+
// errorBinary = append(errorBinary, "httprobe")
175+
// }
176+
174177
if _, err = utils.RunCommandWithErr(fmt.Sprintf("%s -h", path.Join(options.Env.BinariesFolder, "nuclei"))); err != nil {
175178
errorBinary = append(errorBinary, "nuclei")
176179
}
@@ -183,10 +186,6 @@ func generalCheck() error {
183186

184187
// Check core signatures
185188
okVuln := false
186-
// if utils.DirLength("~/.jaeles/base-signatures/") > 0 || utils.DirLength("~/pro-signatures/") > 0 {
187-
// okVuln = true
188-
// }
189-
190189
if utils.DirLength("~/nuclei-templates") > 0 {
191190
okVuln = true
192191
}

go.mod

Lines changed: 49 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -1,103 +1,104 @@
11
module github.com/j3ssie/osmedeus
22

3-
go 1.20
3+
go 1.21.6
44

55
require (
66
github.com/Jeffail/gabs/v2 v2.7.0
77
github.com/Shopify/yaml v2.1.0+incompatible
8-
github.com/aws/aws-sdk-go v1.44.327
9-
github.com/cenkalti/backoff/v4 v4.2.1
10-
github.com/davecgh/go-spew v1.1.1
8+
github.com/aws/aws-sdk-go v1.51.14
9+
github.com/cenkalti/backoff/v4 v4.3.0
10+
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc
1111
github.com/dgrijalva/jwt-go v3.2.0+incompatible
12-
github.com/digitalocean/godo v1.102.1
13-
github.com/fatih/color v1.15.0
12+
github.com/digitalocean/godo v1.111.0
13+
github.com/fatih/color v1.16.0
1414
github.com/flosch/pongo2/v6 v6.0.0
15-
github.com/fsnotify/fsnotify v1.6.0
16-
github.com/go-playground/validator/v10 v10.15.1
17-
github.com/go-resty/resty/v2 v2.7.0
15+
github.com/fsnotify/fsnotify v1.7.0
16+
github.com/go-playground/validator/v10 v10.19.0
17+
github.com/go-resty/resty/v2 v2.12.0
1818
github.com/go-telegram-bot-api/telegram-bot-api/v5 v5.5.1
19-
github.com/gofiber/fiber/v2 v2.48.0
19+
github.com/gofiber/fiber/v2 v2.52.4
2020
github.com/gofiber/jwt/v2 v2.2.7
21-
github.com/gomarkdown/markdown v0.0.0-20230716120725-531d2d74bc12
21+
github.com/gomarkdown/markdown v0.0.0-20240328165702-4d01890c35c0
2222
github.com/hashicorp/go-version v1.6.0
2323
github.com/jasonlvhit/gocron v0.0.1
2424
github.com/jinzhu/copier v0.4.0
2525
github.com/json-iterator/go v1.1.12
26-
github.com/kr/pretty v0.3.1
2726
github.com/kyokomi/emoji v2.2.4+incompatible
28-
github.com/linode/linodego v1.20.1
27+
github.com/linode/linodego v1.31.0
2928
github.com/mitchellh/go-homedir v1.1.0
3029
github.com/mitchellh/go-ps v1.0.0
3130
github.com/olekukonko/tablewriter v0.0.5
3231
github.com/panjf2000/ants v1.3.0
33-
github.com/parnurzeal/gorequest v0.2.16
34-
github.com/robertkrimen/otto v0.2.1
32+
github.com/parnurzeal/gorequest v0.3.0
33+
github.com/robertkrimen/otto v0.3.0
3534
github.com/shirou/gopsutil v3.21.11+incompatible
3635
github.com/sirupsen/logrus v1.9.3
37-
github.com/slack-go/slack v0.12.2
38-
github.com/spf13/cast v1.5.1
39-
github.com/spf13/cobra v1.7.0
40-
github.com/spf13/viper v1.16.0
36+
github.com/slack-go/slack v0.12.5
37+
github.com/spf13/cast v1.6.0
38+
github.com/spf13/cobra v1.8.0
39+
github.com/spf13/viper v1.18.2
4140
github.com/thoas/go-funk v0.9.3
4241
github.com/x-cray/logrus-prefixed-formatter v0.5.2
43-
github.com/xanzy/go-gitlab v0.90.0
44-
golang.org/x/crypto v0.12.0
45-
golang.org/x/net v0.14.0
46-
golang.org/x/oauth2 v0.11.0
47-
golang.org/x/term v0.11.0
48-
golang.org/x/text v0.12.0
42+
github.com/xanzy/go-gitlab v0.101.0
43+
golang.org/x/crypto v0.21.0
44+
golang.org/x/net v0.23.0
45+
golang.org/x/oauth2 v0.18.0
46+
golang.org/x/term v0.18.0
47+
golang.org/x/text v0.14.0
4948
)
5049

5150
require (
5251
github.com/andybalholm/brotli v1.0.5 // indirect
53-
github.com/elazarl/goproxy v0.0.0-20230808193330-2592e75ae04a // indirect
54-
github.com/gabriel-vasile/mimetype v1.4.2 // indirect
52+
github.com/elazarl/goproxy v0.0.0-20231117061959-7cc037d33fb5 // indirect
53+
github.com/gabriel-vasile/mimetype v1.4.3 // indirect
5554
github.com/go-ole/go-ole v1.2.6 // indirect
5655
github.com/go-playground/locales v0.14.1 // indirect
5756
github.com/go-playground/universal-translator v0.18.1 // indirect
5857
github.com/golang-jwt/jwt/v4 v4.0.0 // indirect
59-
github.com/golang/protobuf v1.5.3 // indirect
58+
github.com/golang/protobuf v1.5.4 // indirect
6059
github.com/google/go-querystring v1.1.0 // indirect
61-
github.com/google/uuid v1.3.0 // indirect
60+
github.com/google/uuid v1.5.0 // indirect
6261
github.com/gorilla/websocket v1.4.2 // indirect
6362
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
6463
github.com/hashicorp/go-retryablehttp v0.7.4 // indirect
6564
github.com/hashicorp/hcl v1.0.0 // indirect
6665
github.com/inconshreveable/mousetrap v1.1.0 // indirect
6766
github.com/jmespath/go-jmespath v0.4.0 // indirect
68-
github.com/klauspost/compress v1.16.3 // indirect
69-
github.com/kr/text v0.2.0 // indirect
70-
github.com/leodido/go-urn v1.2.4 // indirect
67+
github.com/klauspost/compress v1.17.0 // indirect
68+
github.com/leodido/go-urn v1.4.0 // indirect
7169
github.com/magiconair/properties v1.8.7 // indirect
7270
github.com/mattn/go-colorable v0.1.13 // indirect
73-
github.com/mattn/go-isatty v0.0.19 // indirect
74-
github.com/mattn/go-runewidth v0.0.14 // indirect
71+
github.com/mattn/go-isatty v0.0.20 // indirect
72+
github.com/mattn/go-runewidth v0.0.15 // indirect
7573
github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d // indirect
7674
github.com/mitchellh/mapstructure v1.5.0 // indirect
7775
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
7876
github.com/modern-go/reflect2 v1.0.2 // indirect
79-
github.com/pelletier/go-toml/v2 v2.0.8 // indirect
77+
github.com/moul/http2curl v1.0.0 // indirect
78+
github.com/pelletier/go-toml/v2 v2.1.0 // indirect
8079
github.com/pkg/errors v0.9.1 // indirect
8180
github.com/rivo/uniseg v0.2.0 // indirect
82-
github.com/rogpeppe/go-internal v1.9.0 // indirect
81+
github.com/sagikazarmark/locafero v0.4.0 // indirect
82+
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
8383
github.com/smartystreets/goconvey v1.8.1 // indirect
84-
github.com/spf13/afero v1.9.5 // indirect
85-
github.com/spf13/jwalterweatherman v1.1.0 // indirect
84+
github.com/sourcegraph/conc v0.3.0 // indirect
85+
github.com/spf13/afero v1.11.0 // indirect
8686
github.com/spf13/pflag v1.0.5 // indirect
87-
github.com/subosito/gotenv v1.4.2 // indirect
88-
github.com/tklauser/go-sysconf v0.3.12 // indirect
89-
github.com/tklauser/numcpus v0.6.1 // indirect
87+
github.com/subosito/gotenv v1.6.0 // indirect
88+
github.com/tklauser/go-sysconf v0.3.13 // indirect
89+
github.com/tklauser/numcpus v0.7.0 // indirect
9090
github.com/valyala/bytebufferpool v1.0.0 // indirect
91-
github.com/valyala/fasthttp v1.48.0 // indirect
91+
github.com/valyala/fasthttp v1.51.0 // indirect
9292
github.com/valyala/tcplisten v1.0.0 // indirect
93-
github.com/yusufpapurcu/wmi v1.2.3 // indirect
94-
golang.org/x/sys v0.11.0 // indirect
95-
golang.org/x/time v0.3.0 // indirect
93+
github.com/yusufpapurcu/wmi v1.2.4 // indirect
94+
go.uber.org/atomic v1.9.0 // indirect
95+
go.uber.org/multierr v1.9.0 // indirect
96+
golang.org/x/exp v0.0.0-20230905200255-921286631fa9 // indirect
97+
golang.org/x/sys v0.18.0 // indirect
98+
golang.org/x/time v0.5.0 // indirect
9699
google.golang.org/appengine v1.6.7 // indirect
97-
google.golang.org/protobuf v1.31.0 // indirect
100+
google.golang.org/protobuf v1.33.0 // indirect
98101
gopkg.in/ini.v1 v1.67.0 // indirect
99102
gopkg.in/sourcemap.v1 v1.0.5 // indirect
100-
gopkg.in/yaml.v2 v2.4.0 // indirect
101103
gopkg.in/yaml.v3 v3.0.1 // indirect
102-
moul.io/http2curl v1.0.0 // indirect
103104
)

0 commit comments

Comments
 (0)