├── .cobaltstrike.beacon_keys ├── .idea ├── .gitignore ├── NewCsTeamServer.iml ├── modules.xml └── vcs.xml ├── README.md ├── README_EN.md ├── beacon.exe ├── client ├── client.go └── manager.go ├── config └── config.go ├── crypt ├── aes.go ├── decryptMetadata.go └── rsa.go ├── go.mod ├── go.sum ├── html └── index.html ├── jquery-c2.4.5.profile ├── main.go ├── png ├── 1.png ├── beacon_key.png ├── client_list.png ├── profile.png ├── 控制.png ├── 服务端流量适配.png └── 监听器.png ├── profile ├── get.go └── info.go ├── server ├── http │ ├── get.go │ ├── post.go │ └── server.go ├── manager │ ├── admin │ │ ├── admin.go │ │ └── handle.go │ └── server.go └── public │ ├── crypt.go │ └── public.go ├── task ├── build.go ├── command.go ├── manager.go ├── parse.go └── task.go ├── test.go └── utils ├── cors.go ├── rsa_key.go └── util.go /.cobaltstrike.beacon_keys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGOTry/NewCobaltstrikeTeamServer/HEAD/.cobaltstrike.beacon_keys -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGOTry/NewCobaltstrikeTeamServer/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/NewCsTeamServer.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGOTry/NewCobaltstrikeTeamServer/HEAD/.idea/NewCsTeamServer.iml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGOTry/NewCobaltstrikeTeamServer/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGOTry/NewCobaltstrikeTeamServer/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGOTry/NewCobaltstrikeTeamServer/HEAD/README.md -------------------------------------------------------------------------------- /README_EN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGOTry/NewCobaltstrikeTeamServer/HEAD/README_EN.md -------------------------------------------------------------------------------- /beacon.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGOTry/NewCobaltstrikeTeamServer/HEAD/beacon.exe -------------------------------------------------------------------------------- /client/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGOTry/NewCobaltstrikeTeamServer/HEAD/client/client.go -------------------------------------------------------------------------------- /client/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGOTry/NewCobaltstrikeTeamServer/HEAD/client/manager.go -------------------------------------------------------------------------------- /config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGOTry/NewCobaltstrikeTeamServer/HEAD/config/config.go -------------------------------------------------------------------------------- /crypt/aes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGOTry/NewCobaltstrikeTeamServer/HEAD/crypt/aes.go -------------------------------------------------------------------------------- /crypt/decryptMetadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGOTry/NewCobaltstrikeTeamServer/HEAD/crypt/decryptMetadata.go -------------------------------------------------------------------------------- /crypt/rsa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGOTry/NewCobaltstrikeTeamServer/HEAD/crypt/rsa.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGOTry/NewCobaltstrikeTeamServer/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGOTry/NewCobaltstrikeTeamServer/HEAD/go.sum -------------------------------------------------------------------------------- /html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGOTry/NewCobaltstrikeTeamServer/HEAD/html/index.html -------------------------------------------------------------------------------- /jquery-c2.4.5.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGOTry/NewCobaltstrikeTeamServer/HEAD/jquery-c2.4.5.profile -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGOTry/NewCobaltstrikeTeamServer/HEAD/main.go -------------------------------------------------------------------------------- /png/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGOTry/NewCobaltstrikeTeamServer/HEAD/png/1.png -------------------------------------------------------------------------------- /png/beacon_key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGOTry/NewCobaltstrikeTeamServer/HEAD/png/beacon_key.png -------------------------------------------------------------------------------- /png/client_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGOTry/NewCobaltstrikeTeamServer/HEAD/png/client_list.png -------------------------------------------------------------------------------- /png/profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGOTry/NewCobaltstrikeTeamServer/HEAD/png/profile.png -------------------------------------------------------------------------------- /png/控制.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGOTry/NewCobaltstrikeTeamServer/HEAD/png/控制.png -------------------------------------------------------------------------------- /png/服务端流量适配.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGOTry/NewCobaltstrikeTeamServer/HEAD/png/服务端流量适配.png -------------------------------------------------------------------------------- /png/监听器.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGOTry/NewCobaltstrikeTeamServer/HEAD/png/监听器.png -------------------------------------------------------------------------------- /profile/get.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGOTry/NewCobaltstrikeTeamServer/HEAD/profile/get.go -------------------------------------------------------------------------------- /profile/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGOTry/NewCobaltstrikeTeamServer/HEAD/profile/info.go -------------------------------------------------------------------------------- /server/http/get.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGOTry/NewCobaltstrikeTeamServer/HEAD/server/http/get.go -------------------------------------------------------------------------------- /server/http/post.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGOTry/NewCobaltstrikeTeamServer/HEAD/server/http/post.go -------------------------------------------------------------------------------- /server/http/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGOTry/NewCobaltstrikeTeamServer/HEAD/server/http/server.go -------------------------------------------------------------------------------- /server/manager/admin/admin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGOTry/NewCobaltstrikeTeamServer/HEAD/server/manager/admin/admin.go -------------------------------------------------------------------------------- /server/manager/admin/handle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGOTry/NewCobaltstrikeTeamServer/HEAD/server/manager/admin/handle.go -------------------------------------------------------------------------------- /server/manager/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGOTry/NewCobaltstrikeTeamServer/HEAD/server/manager/server.go -------------------------------------------------------------------------------- /server/public/crypt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGOTry/NewCobaltstrikeTeamServer/HEAD/server/public/crypt.go -------------------------------------------------------------------------------- /server/public/public.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGOTry/NewCobaltstrikeTeamServer/HEAD/server/public/public.go -------------------------------------------------------------------------------- /task/build.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGOTry/NewCobaltstrikeTeamServer/HEAD/task/build.go -------------------------------------------------------------------------------- /task/command.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGOTry/NewCobaltstrikeTeamServer/HEAD/task/command.go -------------------------------------------------------------------------------- /task/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGOTry/NewCobaltstrikeTeamServer/HEAD/task/manager.go -------------------------------------------------------------------------------- /task/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGOTry/NewCobaltstrikeTeamServer/HEAD/task/parse.go -------------------------------------------------------------------------------- /task/task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGOTry/NewCobaltstrikeTeamServer/HEAD/task/task.go -------------------------------------------------------------------------------- /test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGOTry/NewCobaltstrikeTeamServer/HEAD/test.go -------------------------------------------------------------------------------- /utils/cors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGOTry/NewCobaltstrikeTeamServer/HEAD/utils/cors.go -------------------------------------------------------------------------------- /utils/rsa_key.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGOTry/NewCobaltstrikeTeamServer/HEAD/utils/rsa_key.go -------------------------------------------------------------------------------- /utils/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGOTry/NewCobaltstrikeTeamServer/HEAD/utils/util.go --------------------------------------------------------------------------------