├── .gitignore ├── README.md ├── cmd ├── config │ ├── c2profile.go │ └── config.go ├── crypt │ ├── aes.go │ ├── rand.go │ └── rsa.go ├── main.go ├── packet │ ├── commands.go │ ├── http.go │ └── packet.go ├── sysinfo │ ├── meta.go │ ├── sysinfo_darwin.go │ ├── sysinfo_linux.go │ └── sysinfo_windows.go └── util │ └── util.go ├── screenshots └── sc.png ├── scripts └── icons.cna └── tools └── BeaconTool ├── lib └── sleep.jar └── src ├── META-INF └── MANIFEST.MF └── com └── blackh4t ├── AsymmetricCrypto.java └── BeaconTool.java /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkr4y/geacon/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkr4y/geacon/HEAD/README.md -------------------------------------------------------------------------------- /cmd/config/c2profile.go: -------------------------------------------------------------------------------- 1 | package config 2 | -------------------------------------------------------------------------------- /cmd/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkr4y/geacon/HEAD/cmd/config/config.go -------------------------------------------------------------------------------- /cmd/crypt/aes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkr4y/geacon/HEAD/cmd/crypt/aes.go -------------------------------------------------------------------------------- /cmd/crypt/rand.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkr4y/geacon/HEAD/cmd/crypt/rand.go -------------------------------------------------------------------------------- /cmd/crypt/rsa.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkr4y/geacon/HEAD/cmd/crypt/rsa.go -------------------------------------------------------------------------------- /cmd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkr4y/geacon/HEAD/cmd/main.go -------------------------------------------------------------------------------- /cmd/packet/commands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkr4y/geacon/HEAD/cmd/packet/commands.go -------------------------------------------------------------------------------- /cmd/packet/http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkr4y/geacon/HEAD/cmd/packet/http.go -------------------------------------------------------------------------------- /cmd/packet/packet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkr4y/geacon/HEAD/cmd/packet/packet.go -------------------------------------------------------------------------------- /cmd/sysinfo/meta.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkr4y/geacon/HEAD/cmd/sysinfo/meta.go -------------------------------------------------------------------------------- /cmd/sysinfo/sysinfo_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkr4y/geacon/HEAD/cmd/sysinfo/sysinfo_darwin.go -------------------------------------------------------------------------------- /cmd/sysinfo/sysinfo_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkr4y/geacon/HEAD/cmd/sysinfo/sysinfo_linux.go -------------------------------------------------------------------------------- /cmd/sysinfo/sysinfo_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkr4y/geacon/HEAD/cmd/sysinfo/sysinfo_windows.go -------------------------------------------------------------------------------- /cmd/util/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkr4y/geacon/HEAD/cmd/util/util.go -------------------------------------------------------------------------------- /screenshots/sc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkr4y/geacon/HEAD/screenshots/sc.png -------------------------------------------------------------------------------- /scripts/icons.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkr4y/geacon/HEAD/scripts/icons.cna -------------------------------------------------------------------------------- /tools/BeaconTool/lib/sleep.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkr4y/geacon/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/darkr4y/geacon/HEAD/tools/BeaconTool/src/com/blackh4t/AsymmetricCrypto.java -------------------------------------------------------------------------------- /tools/BeaconTool/src/com/blackh4t/BeaconTool.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/darkr4y/geacon/HEAD/tools/BeaconTool/src/com/blackh4t/BeaconTool.java --------------------------------------------------------------------------------