├── .gitattributes ├── .gitignore ├── CMakeLists.txt ├── CMakePresets.json ├── CMakeSettings.json ├── Include ├── Beacon.h ├── CipherContext.h ├── Client.h ├── Connection.h ├── CryptoUtils.h ├── Handlers.h ├── Handlers_Utils.h ├── MemoryModule.h ├── Os.h ├── PivotConn.h ├── ReadersWriterLock.h ├── Sliver-CPPImplant.h ├── Token.h ├── Utils.h ├── base64_utils.h ├── common.pb.h ├── constants.h ├── encoders.h ├── evasion.h ├── executeAssembly.h ├── extensions.h ├── filesystem.h ├── globals.h ├── listeners.h ├── my_time.h ├── pivots.h ├── processes.h ├── sliver.pb.h ├── taskRunner.h ├── tsmap.h └── tunnels.h ├── README.md ├── compile.bat ├── deploy_compile.bat ├── sign.ps1 └── src ├── Base64.cpp ├── Beacon.cpp ├── CipherContext.cpp ├── CryptoUtils.cpp ├── Encoders.cpp ├── ExecuteAssembly.cpp ├── Handlers_Utils.cpp ├── HttpClient.cpp ├── MemoryModule.cpp ├── NamedPipeClient.cpp ├── NamedPipeConn.cpp ├── NamedPipeListener.cpp ├── Os.cpp ├── Pivots.cpp ├── Sliver-CPPImplant.cpp ├── TCPClient.cpp ├── TCPConn.cpp ├── TCPListener.cpp ├── Token.cpp ├── Utils.cpp ├── common.pb.cc ├── common.proto ├── constants.cpp ├── evasion.cpp ├── execute.cpp ├── extensions.cpp ├── filesystem.cpp ├── globals.cpp ├── pivotHandlers.cpp ├── processes.cpp ├── sliver.pb.cc ├── sliver.proto ├── systemHandlers.cpp └── tunnelHandlers.cpp /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAle98/Sliver-CPPImplant2/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAle98/Sliver-CPPImplant2/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAle98/Sliver-CPPImplant2/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CMakePresets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAle98/Sliver-CPPImplant2/HEAD/CMakePresets.json -------------------------------------------------------------------------------- /CMakeSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAle98/Sliver-CPPImplant2/HEAD/CMakeSettings.json -------------------------------------------------------------------------------- /Include/Beacon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAle98/Sliver-CPPImplant2/HEAD/Include/Beacon.h -------------------------------------------------------------------------------- /Include/CipherContext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAle98/Sliver-CPPImplant2/HEAD/Include/CipherContext.h -------------------------------------------------------------------------------- /Include/Client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAle98/Sliver-CPPImplant2/HEAD/Include/Client.h -------------------------------------------------------------------------------- /Include/Connection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAle98/Sliver-CPPImplant2/HEAD/Include/Connection.h -------------------------------------------------------------------------------- /Include/CryptoUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAle98/Sliver-CPPImplant2/HEAD/Include/CryptoUtils.h -------------------------------------------------------------------------------- /Include/Handlers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAle98/Sliver-CPPImplant2/HEAD/Include/Handlers.h -------------------------------------------------------------------------------- /Include/Handlers_Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAle98/Sliver-CPPImplant2/HEAD/Include/Handlers_Utils.h -------------------------------------------------------------------------------- /Include/MemoryModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAle98/Sliver-CPPImplant2/HEAD/Include/MemoryModule.h -------------------------------------------------------------------------------- /Include/Os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAle98/Sliver-CPPImplant2/HEAD/Include/Os.h -------------------------------------------------------------------------------- /Include/PivotConn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAle98/Sliver-CPPImplant2/HEAD/Include/PivotConn.h -------------------------------------------------------------------------------- /Include/ReadersWriterLock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAle98/Sliver-CPPImplant2/HEAD/Include/ReadersWriterLock.h -------------------------------------------------------------------------------- /Include/Sliver-CPPImplant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAle98/Sliver-CPPImplant2/HEAD/Include/Sliver-CPPImplant.h -------------------------------------------------------------------------------- /Include/Token.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAle98/Sliver-CPPImplant2/HEAD/Include/Token.h -------------------------------------------------------------------------------- /Include/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAle98/Sliver-CPPImplant2/HEAD/Include/Utils.h -------------------------------------------------------------------------------- /Include/base64_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAle98/Sliver-CPPImplant2/HEAD/Include/base64_utils.h -------------------------------------------------------------------------------- /Include/common.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAle98/Sliver-CPPImplant2/HEAD/Include/common.pb.h -------------------------------------------------------------------------------- /Include/constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAle98/Sliver-CPPImplant2/HEAD/Include/constants.h -------------------------------------------------------------------------------- /Include/encoders.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAle98/Sliver-CPPImplant2/HEAD/Include/encoders.h -------------------------------------------------------------------------------- /Include/evasion.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAle98/Sliver-CPPImplant2/HEAD/Include/evasion.h -------------------------------------------------------------------------------- /Include/executeAssembly.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAle98/Sliver-CPPImplant2/HEAD/Include/executeAssembly.h -------------------------------------------------------------------------------- /Include/extensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAle98/Sliver-CPPImplant2/HEAD/Include/extensions.h -------------------------------------------------------------------------------- /Include/filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAle98/Sliver-CPPImplant2/HEAD/Include/filesystem.h -------------------------------------------------------------------------------- /Include/globals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAle98/Sliver-CPPImplant2/HEAD/Include/globals.h -------------------------------------------------------------------------------- /Include/listeners.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAle98/Sliver-CPPImplant2/HEAD/Include/listeners.h -------------------------------------------------------------------------------- /Include/my_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAle98/Sliver-CPPImplant2/HEAD/Include/my_time.h -------------------------------------------------------------------------------- /Include/pivots.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAle98/Sliver-CPPImplant2/HEAD/Include/pivots.h -------------------------------------------------------------------------------- /Include/processes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAle98/Sliver-CPPImplant2/HEAD/Include/processes.h -------------------------------------------------------------------------------- /Include/sliver.pb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAle98/Sliver-CPPImplant2/HEAD/Include/sliver.pb.h -------------------------------------------------------------------------------- /Include/taskRunner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAle98/Sliver-CPPImplant2/HEAD/Include/taskRunner.h -------------------------------------------------------------------------------- /Include/tsmap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAle98/Sliver-CPPImplant2/HEAD/Include/tsmap.h -------------------------------------------------------------------------------- /Include/tunnels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAle98/Sliver-CPPImplant2/HEAD/Include/tunnels.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAle98/Sliver-CPPImplant2/HEAD/README.md -------------------------------------------------------------------------------- /compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAle98/Sliver-CPPImplant2/HEAD/compile.bat -------------------------------------------------------------------------------- /deploy_compile.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAle98/Sliver-CPPImplant2/HEAD/deploy_compile.bat -------------------------------------------------------------------------------- /sign.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAle98/Sliver-CPPImplant2/HEAD/sign.ps1 -------------------------------------------------------------------------------- /src/Base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAle98/Sliver-CPPImplant2/HEAD/src/Base64.cpp -------------------------------------------------------------------------------- /src/Beacon.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAle98/Sliver-CPPImplant2/HEAD/src/Beacon.cpp -------------------------------------------------------------------------------- /src/CipherContext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAle98/Sliver-CPPImplant2/HEAD/src/CipherContext.cpp -------------------------------------------------------------------------------- /src/CryptoUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAle98/Sliver-CPPImplant2/HEAD/src/CryptoUtils.cpp -------------------------------------------------------------------------------- /src/Encoders.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAle98/Sliver-CPPImplant2/HEAD/src/Encoders.cpp -------------------------------------------------------------------------------- /src/ExecuteAssembly.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAle98/Sliver-CPPImplant2/HEAD/src/ExecuteAssembly.cpp -------------------------------------------------------------------------------- /src/Handlers_Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAle98/Sliver-CPPImplant2/HEAD/src/Handlers_Utils.cpp -------------------------------------------------------------------------------- /src/HttpClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAle98/Sliver-CPPImplant2/HEAD/src/HttpClient.cpp -------------------------------------------------------------------------------- /src/MemoryModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAle98/Sliver-CPPImplant2/HEAD/src/MemoryModule.cpp -------------------------------------------------------------------------------- /src/NamedPipeClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAle98/Sliver-CPPImplant2/HEAD/src/NamedPipeClient.cpp -------------------------------------------------------------------------------- /src/NamedPipeConn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAle98/Sliver-CPPImplant2/HEAD/src/NamedPipeConn.cpp -------------------------------------------------------------------------------- /src/NamedPipeListener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAle98/Sliver-CPPImplant2/HEAD/src/NamedPipeListener.cpp -------------------------------------------------------------------------------- /src/Os.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAle98/Sliver-CPPImplant2/HEAD/src/Os.cpp -------------------------------------------------------------------------------- /src/Pivots.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAle98/Sliver-CPPImplant2/HEAD/src/Pivots.cpp -------------------------------------------------------------------------------- /src/Sliver-CPPImplant.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAle98/Sliver-CPPImplant2/HEAD/src/Sliver-CPPImplant.cpp -------------------------------------------------------------------------------- /src/TCPClient.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAle98/Sliver-CPPImplant2/HEAD/src/TCPClient.cpp -------------------------------------------------------------------------------- /src/TCPConn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAle98/Sliver-CPPImplant2/HEAD/src/TCPConn.cpp -------------------------------------------------------------------------------- /src/TCPListener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAle98/Sliver-CPPImplant2/HEAD/src/TCPListener.cpp -------------------------------------------------------------------------------- /src/Token.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAle98/Sliver-CPPImplant2/HEAD/src/Token.cpp -------------------------------------------------------------------------------- /src/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAle98/Sliver-CPPImplant2/HEAD/src/Utils.cpp -------------------------------------------------------------------------------- /src/common.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAle98/Sliver-CPPImplant2/HEAD/src/common.pb.cc -------------------------------------------------------------------------------- /src/common.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAle98/Sliver-CPPImplant2/HEAD/src/common.proto -------------------------------------------------------------------------------- /src/constants.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAle98/Sliver-CPPImplant2/HEAD/src/constants.cpp -------------------------------------------------------------------------------- /src/evasion.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAle98/Sliver-CPPImplant2/HEAD/src/evasion.cpp -------------------------------------------------------------------------------- /src/execute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAle98/Sliver-CPPImplant2/HEAD/src/execute.cpp -------------------------------------------------------------------------------- /src/extensions.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAle98/Sliver-CPPImplant2/HEAD/src/extensions.cpp -------------------------------------------------------------------------------- /src/filesystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAle98/Sliver-CPPImplant2/HEAD/src/filesystem.cpp -------------------------------------------------------------------------------- /src/globals.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAle98/Sliver-CPPImplant2/HEAD/src/globals.cpp -------------------------------------------------------------------------------- /src/pivotHandlers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAle98/Sliver-CPPImplant2/HEAD/src/pivotHandlers.cpp -------------------------------------------------------------------------------- /src/processes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAle98/Sliver-CPPImplant2/HEAD/src/processes.cpp -------------------------------------------------------------------------------- /src/sliver.pb.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAle98/Sliver-CPPImplant2/HEAD/src/sliver.pb.cc -------------------------------------------------------------------------------- /src/sliver.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAle98/Sliver-CPPImplant2/HEAD/src/sliver.proto -------------------------------------------------------------------------------- /src/systemHandlers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAle98/Sliver-CPPImplant2/HEAD/src/systemHandlers.cpp -------------------------------------------------------------------------------- /src/tunnelHandlers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MrAle98/Sliver-CPPImplant2/HEAD/src/tunnelHandlers.cpp --------------------------------------------------------------------------------