├── README.md ├── cmd ├── config │ ├── c2profile.go │ └── config.go ├── crypt │ ├── aes.go │ ├── rand.go │ └── rsa.go ├── go.mod ├── go.sum ├── main.go ├── packet │ ├── commands.go │ ├── http.go │ └── packet.go ├── sysinfo │ ├── meta.go │ ├── sysinfo_darwin.go │ ├── sysinfo_linux.go │ └── sysinfo_windows.go └── util │ └── util.go ├── get.png ├── gmail.profile ├── post.png ├── screenshots └── sc.png ├── scripts └── icons.cna └── tools └── BeaconTool ├── lib └── sleep.jar └── src ├── META-INF └── MANIFEST.MF └── com └── blackh4t ├── AsymmetricCrypto.java └── BeaconTool.java /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGOTry/edit-gencon/HEAD/README.md -------------------------------------------------------------------------------- /cmd/config/c2profile.go: -------------------------------------------------------------------------------- 1 | package config 2 | -------------------------------------------------------------------------------- /cmd/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGOTry/edit-gencon/HEAD/cmd/config/config.go -------------------------------------------------------------------------------- /cmd/crypt/aes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGOTry/edit-gencon/HEAD/cmd/crypt/aes.go -------------------------------------------------------------------------------- /cmd/crypt/rand.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGOTry/edit-gencon/HEAD/cmd/crypt/rand.go -------------------------------------------------------------------------------- /cmd/crypt/rsa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGOTry/edit-gencon/HEAD/cmd/crypt/rsa.go -------------------------------------------------------------------------------- /cmd/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGOTry/edit-gencon/HEAD/cmd/go.mod -------------------------------------------------------------------------------- /cmd/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGOTry/edit-gencon/HEAD/cmd/go.sum -------------------------------------------------------------------------------- /cmd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGOTry/edit-gencon/HEAD/cmd/main.go -------------------------------------------------------------------------------- /cmd/packet/commands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGOTry/edit-gencon/HEAD/cmd/packet/commands.go -------------------------------------------------------------------------------- /cmd/packet/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGOTry/edit-gencon/HEAD/cmd/packet/http.go -------------------------------------------------------------------------------- /cmd/packet/packet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGOTry/edit-gencon/HEAD/cmd/packet/packet.go -------------------------------------------------------------------------------- /cmd/sysinfo/meta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGOTry/edit-gencon/HEAD/cmd/sysinfo/meta.go -------------------------------------------------------------------------------- /cmd/sysinfo/sysinfo_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGOTry/edit-gencon/HEAD/cmd/sysinfo/sysinfo_darwin.go -------------------------------------------------------------------------------- /cmd/sysinfo/sysinfo_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGOTry/edit-gencon/HEAD/cmd/sysinfo/sysinfo_linux.go -------------------------------------------------------------------------------- /cmd/sysinfo/sysinfo_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGOTry/edit-gencon/HEAD/cmd/sysinfo/sysinfo_windows.go -------------------------------------------------------------------------------- /cmd/util/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGOTry/edit-gencon/HEAD/cmd/util/util.go -------------------------------------------------------------------------------- /get.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGOTry/edit-gencon/HEAD/get.png -------------------------------------------------------------------------------- /gmail.profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGOTry/edit-gencon/HEAD/gmail.profile -------------------------------------------------------------------------------- /post.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGOTry/edit-gencon/HEAD/post.png -------------------------------------------------------------------------------- /screenshots/sc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGOTry/edit-gencon/HEAD/screenshots/sc.png -------------------------------------------------------------------------------- /scripts/icons.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGOTry/edit-gencon/HEAD/scripts/icons.cna -------------------------------------------------------------------------------- /tools/BeaconTool/lib/sleep.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGOTry/edit-gencon/HEAD/tools/BeaconTool/lib/sleep.jar -------------------------------------------------------------------------------- /tools/BeaconTool/src/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Main-Class: com.blackh4t.BeaconTool 3 | 4 | -------------------------------------------------------------------------------- /tools/BeaconTool/src/com/blackh4t/AsymmetricCrypto.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGOTry/edit-gencon/HEAD/tools/BeaconTool/src/com/blackh4t/AsymmetricCrypto.java -------------------------------------------------------------------------------- /tools/BeaconTool/src/com/blackh4t/BeaconTool.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TryGOTry/edit-gencon/HEAD/tools/BeaconTool/src/com/blackh4t/BeaconTool.java --------------------------------------------------------------------------------