diff options
author | Bryan McNulty <bryanmcnulty@protonmail.com> | 2025-02-26 19:42:55 -0600 |
---|---|---|
committer | Bryan McNulty <bryanmcnulty@protonmail.com> | 2025-02-26 19:42:55 -0600 |
commit | 0591eed275fd24e5c1b959e1a182bea6f6275c34 (patch) | |
tree | d32e53640e65627180de9a290449309591bae771 /go.mod | |
parent | 930699ae66d1ddaf44fec71e04c33ab193531584 (diff) | |
download | goexec-0591eed275fd24e5c1b959e1a182bea6f6275c34.tar.gz goexec-0591eed275fd24e5c1b959e1a182bea6f6275c34.zip |
Initial commit +scmrexec
Diffstat (limited to 'go.mod')
-rw-r--r-- | go.mod | 33 |
1 files changed, 33 insertions, 0 deletions
@@ -0,0 +1,33 @@ +module github.com/FalconOpsLLC/goexec + +go 1.24.0 + +require ( + github.com/bryanmcnulty/adauth v0.0.0-20250227005704-df9302d730c2 + github.com/oiweiwei/go-msrpc v1.2.1 + github.com/rs/zerolog v1.33.0 + github.com/spf13/cobra v1.9.1 +) + +require ( + github.com/geoffgarside/ber v1.1.0 // indirect + github.com/hashicorp/go-uuid v1.0.3 // indirect + github.com/inconshreveable/mousetrap v1.1.0 // indirect + github.com/indece-official/go-ebcdic v1.2.0 // indirect + github.com/jcmturner/aescts/v2 v2.0.0 // indirect + github.com/jcmturner/dnsutils/v2 v2.0.0 // indirect + github.com/jcmturner/gofork v1.7.6 // indirect + github.com/jcmturner/goidentity/v6 v6.0.1 // indirect + github.com/jcmturner/gokrb5/v8 v8.4.4 // indirect + github.com/jcmturner/rpc/v2 v2.0.3 // indirect + github.com/mattn/go-colorable v0.1.14 // indirect + github.com/mattn/go-isatty v0.0.20 // indirect + github.com/oiweiwei/go-smb2.fork v1.0.0 // indirect + github.com/oiweiwei/gokrb5.fork/v9 v9.0.2 // indirect + github.com/spf13/pflag v1.0.6 // indirect + golang.org/x/crypto v0.32.0 // indirect + golang.org/x/net v0.34.0 // indirect + golang.org/x/sys v0.29.0 // indirect + golang.org/x/text v0.21.0 // indirect + software.sslmate.com/src/go-pkcs12 v0.5.0 // indirect +) |