├── GoAT.go ├── README.md ├── UNLICENSE ├── pkg └── windows_amd64 │ └── golang.org │ └── x │ └── sys │ └── windows │ └── registry.a └── src ├── command ├── cmdEcho.go ├── cmdQuit.go └── command.go ├── installer └── install.go └── rootkit ├── rootkit.c └── rootkit.go /GoAT.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/user696/GoATS/HEAD/GoAT.go -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/user696/GoATS/HEAD/README.md -------------------------------------------------------------------------------- /UNLICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/user696/GoATS/HEAD/UNLICENSE -------------------------------------------------------------------------------- /pkg/windows_amd64/golang.org/x/sys/windows/registry.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/user696/GoATS/HEAD/pkg/windows_amd64/golang.org/x/sys/windows/registry.a -------------------------------------------------------------------------------- /src/command/cmdEcho.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/user696/GoATS/HEAD/src/command/cmdEcho.go -------------------------------------------------------------------------------- /src/command/cmdQuit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/user696/GoATS/HEAD/src/command/cmdQuit.go -------------------------------------------------------------------------------- /src/command/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/user696/GoATS/HEAD/src/command/command.go -------------------------------------------------------------------------------- /src/installer/install.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/user696/GoATS/HEAD/src/installer/install.go -------------------------------------------------------------------------------- /src/rootkit/rootkit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/user696/GoATS/HEAD/src/rootkit/rootkit.c -------------------------------------------------------------------------------- /src/rootkit/rootkit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/user696/GoATS/HEAD/src/rootkit/rootkit.go --------------------------------------------------------------------------------