Skip to content

Commit

Permalink
v4.6.4: Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
j3ssie committed Apr 4, 2024
1 parent cd3a133 commit 815c261
Show file tree
Hide file tree
Showing 4 changed files with 189 additions and 563 deletions.
17 changes: 8 additions & 9 deletions cmd/health.go
Original file line number Diff line number Diff line change
Expand Up @@ -165,12 +165,15 @@ func generalCheck() error {
if _, err = utils.RunCommandWithErr("amass -h"); err != nil {
errorBinary = append(errorBinary, "amass")
}
if _, err = utils.RunCommandWithErr(fmt.Sprintf("%s -h", path.Join(options.Env.BinariesFolder, "subfinder"))); err != nil {
errorBinary = append(errorBinary, "subfinder")
}
if _, err = utils.RunCommandWithErr(fmt.Sprintf("%s -h", path.Join(options.Env.BinariesFolder, "httprobe"))); err != nil {
errorBinary = append(errorBinary, "httprobe")

if _, err = utils.RunCommandWithErr(fmt.Sprintf("%s -h", path.Join(options.Env.BinariesFolder, "httpx"))); err != nil {
errorBinary = append(errorBinary, "httpx")
}

// if _, err = utils.RunCommandWithErr(fmt.Sprintf("%s -h", path.Join(options.Env.BinariesFolder, "httprobe"))); err != nil {
// errorBinary = append(errorBinary, "httprobe")
// }

if _, err = utils.RunCommandWithErr(fmt.Sprintf("%s -h", path.Join(options.Env.BinariesFolder, "nuclei"))); err != nil {
errorBinary = append(errorBinary, "nuclei")
}
Expand All @@ -183,10 +186,6 @@ func generalCheck() error {

// Check core signatures
okVuln := false
// if utils.DirLength("~/.jaeles/base-signatures/") > 0 || utils.DirLength("~/pro-signatures/") > 0 {
// okVuln = true
// }

if utils.DirLength("~/nuclei-templates") > 0 {
okVuln = true
}
Expand Down
97 changes: 49 additions & 48 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,103 +1,104 @@
module github.com/j3ssie/osmedeus

go 1.20
go 1.21.6

require (
github.com/Jeffail/gabs/v2 v2.7.0
github.com/Shopify/yaml v2.1.0+incompatible
github.com/aws/aws-sdk-go v1.44.327
github.com/cenkalti/backoff/v4 v4.2.1
github.com/davecgh/go-spew v1.1.1
github.com/aws/aws-sdk-go v1.51.14
github.com/cenkalti/backoff/v4 v4.3.0
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc
github.com/dgrijalva/jwt-go v3.2.0+incompatible
github.com/digitalocean/godo v1.102.1
github.com/fatih/color v1.15.0
github.com/digitalocean/godo v1.111.0
github.com/fatih/color v1.16.0
github.com/flosch/pongo2/v6 v6.0.0
github.com/fsnotify/fsnotify v1.6.0
github.com/go-playground/validator/v10 v10.15.1
github.com/go-resty/resty/v2 v2.7.0
github.com/fsnotify/fsnotify v1.7.0
github.com/go-playground/validator/v10 v10.19.0
github.com/go-resty/resty/v2 v2.12.0
github.com/go-telegram-bot-api/telegram-bot-api/v5 v5.5.1
github.com/gofiber/fiber/v2 v2.48.0
github.com/gofiber/fiber/v2 v2.52.4
github.com/gofiber/jwt/v2 v2.2.7
github.com/gomarkdown/markdown v0.0.0-20230716120725-531d2d74bc12
github.com/gomarkdown/markdown v0.0.0-20240328165702-4d01890c35c0
github.com/hashicorp/go-version v1.6.0
github.com/jasonlvhit/gocron v0.0.1
github.com/jinzhu/copier v0.4.0
github.com/json-iterator/go v1.1.12
github.com/kr/pretty v0.3.1
github.com/kyokomi/emoji v2.2.4+incompatible
github.com/linode/linodego v1.20.1
github.com/linode/linodego v1.31.0
github.com/mitchellh/go-homedir v1.1.0
github.com/mitchellh/go-ps v1.0.0
github.com/olekukonko/tablewriter v0.0.5
github.com/panjf2000/ants v1.3.0
github.com/parnurzeal/gorequest v0.2.16
github.com/robertkrimen/otto v0.2.1
github.com/parnurzeal/gorequest v0.3.0
github.com/robertkrimen/otto v0.3.0
github.com/shirou/gopsutil v3.21.11+incompatible
github.com/sirupsen/logrus v1.9.3
github.com/slack-go/slack v0.12.2
github.com/spf13/cast v1.5.1
github.com/spf13/cobra v1.7.0
github.com/spf13/viper v1.16.0
github.com/slack-go/slack v0.12.5
github.com/spf13/cast v1.6.0
github.com/spf13/cobra v1.8.0
github.com/spf13/viper v1.18.2
github.com/thoas/go-funk v0.9.3
github.com/x-cray/logrus-prefixed-formatter v0.5.2
github.com/xanzy/go-gitlab v0.90.0
golang.org/x/crypto v0.12.0
golang.org/x/net v0.14.0
golang.org/x/oauth2 v0.11.0
golang.org/x/term v0.11.0
golang.org/x/text v0.12.0
github.com/xanzy/go-gitlab v0.101.0
golang.org/x/crypto v0.21.0
golang.org/x/net v0.23.0
golang.org/x/oauth2 v0.18.0
golang.org/x/term v0.18.0
golang.org/x/text v0.14.0
)

require (
github.com/andybalholm/brotli v1.0.5 // indirect
github.com/elazarl/goproxy v0.0.0-20230808193330-2592e75ae04a // indirect
github.com/gabriel-vasile/mimetype v1.4.2 // indirect
github.com/elazarl/goproxy v0.0.0-20231117061959-7cc037d33fb5 // indirect
github.com/gabriel-vasile/mimetype v1.4.3 // indirect
github.com/go-ole/go-ole v1.2.6 // indirect
github.com/go-playground/locales v0.14.1 // indirect
github.com/go-playground/universal-translator v0.18.1 // indirect
github.com/golang-jwt/jwt/v4 v4.0.0 // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/golang/protobuf v1.5.4 // indirect
github.com/google/go-querystring v1.1.0 // indirect
github.com/google/uuid v1.3.0 // indirect
github.com/google/uuid v1.5.0 // indirect
github.com/gorilla/websocket v1.4.2 // indirect
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
github.com/hashicorp/go-retryablehttp v0.7.4 // indirect
github.com/hashicorp/hcl v1.0.0 // indirect
github.com/inconshreveable/mousetrap v1.1.0 // indirect
github.com/jmespath/go-jmespath v0.4.0 // indirect
github.com/klauspost/compress v1.16.3 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/leodido/go-urn v1.2.4 // indirect
github.com/klauspost/compress v1.17.0 // indirect
github.com/leodido/go-urn v1.4.0 // indirect
github.com/magiconair/properties v1.8.7 // indirect
github.com/mattn/go-colorable v0.1.13 // indirect
github.com/mattn/go-isatty v0.0.19 // indirect
github.com/mattn/go-runewidth v0.0.14 // indirect
github.com/mattn/go-isatty v0.0.20 // indirect
github.com/mattn/go-runewidth v0.0.15 // indirect
github.com/mgutz/ansi v0.0.0-20200706080929-d51e80ef957d // indirect
github.com/mitchellh/mapstructure v1.5.0 // indirect
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
github.com/modern-go/reflect2 v1.0.2 // indirect
github.com/pelletier/go-toml/v2 v2.0.8 // indirect
github.com/moul/http2curl v1.0.0 // indirect
github.com/pelletier/go-toml/v2 v2.1.0 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/rivo/uniseg v0.2.0 // indirect
github.com/rogpeppe/go-internal v1.9.0 // indirect
github.com/sagikazarmark/locafero v0.4.0 // indirect
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
github.com/smartystreets/goconvey v1.8.1 // indirect
github.com/spf13/afero v1.9.5 // indirect
github.com/spf13/jwalterweatherman v1.1.0 // indirect
github.com/sourcegraph/conc v0.3.0 // indirect
github.com/spf13/afero v1.11.0 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/subosito/gotenv v1.4.2 // indirect
github.com/tklauser/go-sysconf v0.3.12 // indirect
github.com/tklauser/numcpus v0.6.1 // indirect
github.com/subosito/gotenv v1.6.0 // indirect
github.com/tklauser/go-sysconf v0.3.13 // indirect
github.com/tklauser/numcpus v0.7.0 // indirect
github.com/valyala/bytebufferpool v1.0.0 // indirect
github.com/valyala/fasthttp v1.48.0 // indirect
github.com/valyala/fasthttp v1.51.0 // indirect
github.com/valyala/tcplisten v1.0.0 // indirect
github.com/yusufpapurcu/wmi v1.2.3 // indirect
golang.org/x/sys v0.11.0 // indirect
golang.org/x/time v0.3.0 // indirect
github.com/yusufpapurcu/wmi v1.2.4 // indirect
go.uber.org/atomic v1.9.0 // indirect
go.uber.org/multierr v1.9.0 // indirect
golang.org/x/exp v0.0.0-20230905200255-921286631fa9 // indirect
golang.org/x/sys v0.18.0 // indirect
golang.org/x/time v0.5.0 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/protobuf v1.31.0 // indirect
google.golang.org/protobuf v1.33.0 // indirect
gopkg.in/ini.v1 v1.67.0 // indirect
gopkg.in/sourcemap.v1 v1.0.5 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
moul.io/http2curl v1.0.0 // indirect
)
Loading

0 comments on commit 815c261

Please sign in to comment.