├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── cmd ├── agent.go ├── c2.go ├── receive.go ├── root.go ├── send.go └── test.go ├── dnsclient ├── client.go ├── cloudflare.go ├── doc.go ├── google.go ├── google_front.go ├── quad9.go ├── raw.go ├── samples │ └── google.json └── structs.go ├── dnsserver ├── doc.go └── server.go ├── go.mod ├── go.sum ├── lib ├── key.go ├── options.go └── utils.go ├── main.go └── protocol ├── command.go ├── constants.go ├── data.go ├── doc.go ├── file.go └── structs.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/godoh/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/godoh/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/godoh/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/godoh/HEAD/README.md -------------------------------------------------------------------------------- /cmd/agent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/godoh/HEAD/cmd/agent.go -------------------------------------------------------------------------------- /cmd/c2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/godoh/HEAD/cmd/c2.go -------------------------------------------------------------------------------- /cmd/receive.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/godoh/HEAD/cmd/receive.go -------------------------------------------------------------------------------- /cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/godoh/HEAD/cmd/root.go -------------------------------------------------------------------------------- /cmd/send.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/godoh/HEAD/cmd/send.go -------------------------------------------------------------------------------- /cmd/test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/godoh/HEAD/cmd/test.go -------------------------------------------------------------------------------- /dnsclient/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/godoh/HEAD/dnsclient/client.go -------------------------------------------------------------------------------- /dnsclient/cloudflare.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/godoh/HEAD/dnsclient/cloudflare.go -------------------------------------------------------------------------------- /dnsclient/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/godoh/HEAD/dnsclient/doc.go -------------------------------------------------------------------------------- /dnsclient/google.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/godoh/HEAD/dnsclient/google.go -------------------------------------------------------------------------------- /dnsclient/google_front.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/godoh/HEAD/dnsclient/google_front.go -------------------------------------------------------------------------------- /dnsclient/quad9.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/godoh/HEAD/dnsclient/quad9.go -------------------------------------------------------------------------------- /dnsclient/raw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/godoh/HEAD/dnsclient/raw.go -------------------------------------------------------------------------------- /dnsclient/samples/google.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/godoh/HEAD/dnsclient/samples/google.json -------------------------------------------------------------------------------- /dnsclient/structs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/godoh/HEAD/dnsclient/structs.go -------------------------------------------------------------------------------- /dnsserver/doc.go: -------------------------------------------------------------------------------- 1 | package dnsserver 2 | -------------------------------------------------------------------------------- /dnsserver/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/godoh/HEAD/dnsserver/server.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/godoh/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/godoh/HEAD/go.sum -------------------------------------------------------------------------------- /lib/key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/godoh/HEAD/lib/key.go -------------------------------------------------------------------------------- /lib/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/godoh/HEAD/lib/options.go -------------------------------------------------------------------------------- /lib/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/godoh/HEAD/lib/utils.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/godoh/HEAD/main.go -------------------------------------------------------------------------------- /protocol/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/godoh/HEAD/protocol/command.go -------------------------------------------------------------------------------- /protocol/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/godoh/HEAD/protocol/constants.go -------------------------------------------------------------------------------- /protocol/data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/godoh/HEAD/protocol/data.go -------------------------------------------------------------------------------- /protocol/doc.go: -------------------------------------------------------------------------------- 1 | package protocol 2 | -------------------------------------------------------------------------------- /protocol/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/godoh/HEAD/protocol/file.go -------------------------------------------------------------------------------- /protocol/structs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sensepost/godoh/HEAD/protocol/structs.go --------------------------------------------------------------------------------