项目地址:https://github.com/starrQWQ/Go4C2
0. 概述
一个用Go实现的简易C2。
目录结构:
1. 环境
- Go,注意要把
%GOPATH%/bin 添加到PATH环境变量; - Protobuf:
- 快速入门,
- 编译器下载
- Go 插件,%GOPATH%/bin/protoc-gen-go.exe:
go get -u github.com/golang/protobuf/protoc-gen-go
如果没有exe生成,就在 /protoc-gen-go包目录里手动编译:
go build -o protoc-gen-go main.go
2. 使用
定义接口
在grpapi目录下执行以下命令编译beacon.proto,生成 /grpaapi/beacon.pb.go:
protoc -I . --go_out=plugins=grpc:./ ./beacon.proto
生成的beacon.pb.go里有我们需要实现的服务接口,如:
type beaconServer interface {
FetchCommand(context.Context, *Empty) (*Command, error)
SendOutput(context.Context, *Command) (*Empty, error)
}
启动服务
共两个服务,所以要指定两个端口:
- BeaconServer,与目标机器beacon连接;
- AdminServer,与客户端连接;
example:
> go run .\server\server.go -server localhost -clientport 4444 -beaconport 5555
-beaconport uint
team server port for beacon
-clientport uint
team server port for client
-server string
team server ip
执行beacon
go run .\beacon.go -server localhost -port 5555
启动客户端
目前每次启动仅能执行一条命令:
go run .\client.go -server localhost -port 4444 -cmd "whoami"
3. 已知问题
|