├── .github └── workflows │ └── Release.yml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE ├── README.md ├── Release ├── Beacons │ └── .gitignore └── Modules │ └── .gitignore ├── beacon └── beacon │ ├── BeaconConfig.json │ ├── BeaconDnsLauncher.cpp │ ├── BeaconGithubLauncher.cpp │ ├── BeaconHttpLauncher.cpp │ ├── BeaconSmbLauncher.cpp │ ├── BeaconTcpLauncher.cpp │ ├── CMakeLists.txt │ ├── clearDef.h │ ├── handleConfig.py │ └── project.rc ├── libs └── CMakeLists.txt ├── majSubmodules.sh └── thirdParty ├── CMakeLists.txt ├── coffLoader └── CMakeLists.txt ├── custom └── Makefile.msvc └── nlohmann └── json.hpp /.github/workflows/Release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2Implant/HEAD/.github/workflows/Release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2Implant/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2Implant/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2Implant/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2Implant/HEAD/README.md -------------------------------------------------------------------------------- /Release/Beacons/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /Release/Modules/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /beacon/beacon/BeaconConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2Implant/HEAD/beacon/beacon/BeaconConfig.json -------------------------------------------------------------------------------- /beacon/beacon/BeaconDnsLauncher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2Implant/HEAD/beacon/beacon/BeaconDnsLauncher.cpp -------------------------------------------------------------------------------- /beacon/beacon/BeaconGithubLauncher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2Implant/HEAD/beacon/beacon/BeaconGithubLauncher.cpp -------------------------------------------------------------------------------- /beacon/beacon/BeaconHttpLauncher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2Implant/HEAD/beacon/beacon/BeaconHttpLauncher.cpp -------------------------------------------------------------------------------- /beacon/beacon/BeaconSmbLauncher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2Implant/HEAD/beacon/beacon/BeaconSmbLauncher.cpp -------------------------------------------------------------------------------- /beacon/beacon/BeaconTcpLauncher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2Implant/HEAD/beacon/beacon/BeaconTcpLauncher.cpp -------------------------------------------------------------------------------- /beacon/beacon/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2Implant/HEAD/beacon/beacon/CMakeLists.txt -------------------------------------------------------------------------------- /beacon/beacon/clearDef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2Implant/HEAD/beacon/beacon/clearDef.h -------------------------------------------------------------------------------- /beacon/beacon/handleConfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2Implant/HEAD/beacon/beacon/handleConfig.py -------------------------------------------------------------------------------- /beacon/beacon/project.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2Implant/HEAD/beacon/beacon/project.rc -------------------------------------------------------------------------------- /libs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2Implant/HEAD/libs/CMakeLists.txt -------------------------------------------------------------------------------- /majSubmodules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2Implant/HEAD/majSubmodules.sh -------------------------------------------------------------------------------- /thirdParty/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2Implant/HEAD/thirdParty/CMakeLists.txt -------------------------------------------------------------------------------- /thirdParty/coffLoader/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2Implant/HEAD/thirdParty/coffLoader/CMakeLists.txt -------------------------------------------------------------------------------- /thirdParty/custom/Makefile.msvc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2Implant/HEAD/thirdParty/custom/Makefile.msvc -------------------------------------------------------------------------------- /thirdParty/nlohmann/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2Implant/HEAD/thirdParty/nlohmann/json.hpp --------------------------------------------------------------------------------