Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Track tempfiles in the debug server. #3686

Merged
merged 2 commits into from
Aug 13, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update deps
  • Loading branch information
scudette committed Aug 13, 2024
commit af0392e27f0d4d6122686c6980f846a5bd5e2eb9
14 changes: 7 additions & 7 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,10 @@ require (
github.com/xor-gate/ar v0.0.0-20170530204233-5c72ae81e2b7 // indirect
github.com/xor-gate/debpkg v1.0.0
go.starlark.net v0.0.0-20230925163745-10651d5192ab
golang.org/x/crypto v0.24.0
golang.org/x/crypto v0.26.0
golang.org/x/mod v0.17.0
golang.org/x/net v0.23.0
golang.org/x/sys v0.22.0
golang.org/x/net v0.27.0
golang.org/x/sys v0.23.0
golang.org/x/text v0.17.0
golang.org/x/time v0.3.0
google.golang.org/api v0.146.0
Expand All @@ -89,7 +89,6 @@ require (
gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc // indirect
gopkg.in/gomail.v2 v2.0.0-20160411212932-81ebce5c23df
gopkg.in/sourcemap.v1 v1.0.5 // indirect
gopkg.in/square/go-jose.v2 v2.6.0 // indirect
howett.net/plist v1.0.0
www.velocidex.com/golang/evtx v0.2.1-0.20240730174545-3e4ff3d96433
www.velocidex.com/golang/go-ese v0.2.1-0.20240207005444-85d57b555f8b
Expand Down Expand Up @@ -127,7 +126,7 @@ require (
github.com/aws/aws-sdk-go-v2/service/s3 v1.51.3
github.com/bradleyjkemp/sigma-go v0.6.4
github.com/clayscode/Go-Splunk-HTTP/splunk/v2 v2.0.1-0.20221027171526-76a36be4fa02
github.com/coreos/go-oidc/v3 v3.4.0
github.com/coreos/go-oidc/v3 v3.11.0
github.com/elastic/go-libaudit/v2 v2.4.0
github.com/evanphx/json-patch/v5 v5.6.0
github.com/glaslos/tlsh v0.2.0
Expand All @@ -149,7 +148,7 @@ require (
github.com/valyala/fastjson v1.6.4
github.com/vincent-petithory/dataurl v1.0.0
github.com/virtuald/go-paniclog v0.0.0-20190812204905-43a7fa316459
golang.org/x/oauth2 v0.21.0
golang.org/x/oauth2 v0.22.0
google.golang.org/genproto/googleapis/api v0.0.0-20231009173412-8bfb1ae86b6c
google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.2.0
gopkg.in/yaml.v2 v2.4.0
Expand Down Expand Up @@ -194,6 +193,7 @@ require (
github.com/dlclark/regexp2 v1.7.0 // indirect
github.com/dustmop/soup v1.1.2-0.20190516214245-38228baa104e // indirect
github.com/geoffgarside/ber v1.1.0 // indirect
github.com/go-jose/go-jose/v4 v4.0.4 // indirect
github.com/golang/gddo v0.0.0-20210115222349-20d68f94ee1f // indirect
github.com/golang/glog v1.1.0 // indirect
github.com/golang/snappy v0.0.4 // indirect
Expand Down Expand Up @@ -239,7 +239,7 @@ require (
go.uber.org/goleak v1.2.0 // indirect
go.uber.org/multierr v1.11.0 // indirect
golang.org/x/sync v0.8.0 // indirect
golang.org/x/term v0.21.0 // indirect
golang.org/x/term v0.23.0 // indirect
golang.org/x/xerrors v0.0.0-20231012003039-104605ab7028 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20231009173412-8bfb1ae86b6c // indirect
www.velocidex.com/golang/binparsergen v0.1.1-0.20240404114946-8f66c7cf586e // indirect
Expand Down
Loading
Loading