├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── Release.yml │ └── Tests.yml ├── .gitignore ├── .gitmodules ├── AGENT.md ├── C2Client ├── .gitignore ├── C2Client │ ├── .gitignore │ ├── AssistantPanel.py │ ├── Beacon │ ├── ConsolePanel.py │ ├── DropperModules.conf │ ├── DropperModules │ │ └── .gitignore │ ├── GUI.py │ ├── GraphPanel.py │ ├── ListenerPanel.py │ ├── ScriptPanel.py │ ├── Scripts │ │ ├── .gitignore │ │ ├── checkSandbox.py │ │ ├── listDirectory.py │ │ ├── startListenerHttp8443.py │ │ └── template.py.example │ ├── SessionPanel.py │ ├── ShellCodeModules.conf │ ├── ShellCodeModules │ │ └── .gitignore │ ├── TerminalModules │ │ ├── Batcave │ │ │ ├── .gitignore │ │ │ └── batcave.py │ │ ├── Credentials │ │ │ ├── .gitignore │ │ │ └── credentials.py │ │ └── __init__.py │ ├── TerminalPanel.py │ ├── __init__.py │ ├── grpcClient.py │ ├── images │ │ ├── firewall.svg │ │ ├── linux.svg │ │ ├── linuxhighpriv.svg │ │ ├── pc.svg │ │ └── windowshighpriv.svg │ ├── libGrpcMessages │ │ └── build │ │ │ └── py │ │ │ ├── TeamServerApi_pb2.py │ │ │ └── TeamServerApi_pb2_grpc.py │ └── logs │ │ └── .gitignore ├── pyproject.toml ├── requirements.txt └── tests │ ├── conftest.py │ ├── test_console_panel.py │ ├── test_grpc_client.py │ └── test_gui_startup.py ├── CMakeLists.txt ├── Dockerfile ├── LICENSE ├── README.md ├── Release ├── .gitignore ├── Beacons │ └── .gitignore ├── Modules │ └── .gitignore ├── Scripts │ └── .gitignore ├── TeamServer │ ├── .gitignore │ └── logs │ │ └── .gitignore ├── Tools │ └── .gitignore └── www │ └── .gitignore ├── certs ├── CMakeLists.txt ├── sslBeaconHttps │ └── genSslCert.sh └── sslTeamServ │ └── genSslCert.sh ├── conan_provider.cmake ├── conanfile.txt ├── images ├── AddListener.png ├── AddListenerTypes.png ├── AssemblyExecMimikatz.png ├── Exploration1.png ├── GenerateDropper.png ├── Listeners.png ├── ListenersAndSessions.png ├── ListenersAndSessions2.png ├── NewSession.png ├── ReleaseModulesBeacons.png ├── ReleaseTeamServerClient.png ├── SessionInteract.png ├── TeamServerLaunch.png ├── architecture.drawio ├── architecture.png ├── coffDir.png └── loadModule.png ├── libs ├── CMakeLists.txt ├── libGrpcMessages │ ├── CMakeLists.txt │ ├── build │ │ └── cpp │ │ │ ├── CMakeLists.txt │ │ │ └── src │ │ │ └── .gitignore │ └── src │ │ └── TeamServerApi.proto ├── libMemoryModuleDumy │ ├── CMakeLists.txt │ ├── README.md │ ├── src │ │ ├── MemoryModule.cpp │ │ └── MemoryModule.h │ └── tests │ │ ├── CMakeLists.txt │ │ ├── Tests.cpp │ │ └── libtest.cpp └── libPipeHandlerDumy │ ├── CMakeLists.txt │ ├── README.md │ └── src │ ├── PipeHandler.cpp │ └── PipeHandler.hpp ├── majSubmodules.sh ├── teamServer ├── CMakeLists.txt ├── teamServer │ ├── TeamServer.cpp │ ├── TeamServer.hpp │ ├── TeamServerConfig.json │ └── auth_credentials.json └── tests │ └── testsTestServer.cpp └── thirdParty ├── CMakeLists.txt └── nlohmann └── json.hpp /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/Release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/.github/workflows/Release.yml -------------------------------------------------------------------------------- /.github/workflows/Tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/.github/workflows/Tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/.gitmodules -------------------------------------------------------------------------------- /AGENT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/AGENT.md -------------------------------------------------------------------------------- /C2Client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/C2Client/.gitignore -------------------------------------------------------------------------------- /C2Client/C2Client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/C2Client/C2Client/.gitignore -------------------------------------------------------------------------------- /C2Client/C2Client/AssistantPanel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/C2Client/C2Client/AssistantPanel.py -------------------------------------------------------------------------------- /C2Client/C2Client/Beacon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/C2Client/C2Client/Beacon -------------------------------------------------------------------------------- /C2Client/C2Client/ConsolePanel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/C2Client/C2Client/ConsolePanel.py -------------------------------------------------------------------------------- /C2Client/C2Client/DropperModules.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/C2Client/C2Client/DropperModules.conf -------------------------------------------------------------------------------- /C2Client/C2Client/DropperModules/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /C2Client/C2Client/GUI.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/C2Client/C2Client/GUI.py -------------------------------------------------------------------------------- /C2Client/C2Client/GraphPanel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/C2Client/C2Client/GraphPanel.py -------------------------------------------------------------------------------- /C2Client/C2Client/ListenerPanel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/C2Client/C2Client/ListenerPanel.py -------------------------------------------------------------------------------- /C2Client/C2Client/ScriptPanel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/C2Client/C2Client/ScriptPanel.py -------------------------------------------------------------------------------- /C2Client/C2Client/Scripts/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ -------------------------------------------------------------------------------- /C2Client/C2Client/Scripts/checkSandbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/C2Client/C2Client/Scripts/checkSandbox.py -------------------------------------------------------------------------------- /C2Client/C2Client/Scripts/listDirectory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/C2Client/C2Client/Scripts/listDirectory.py -------------------------------------------------------------------------------- /C2Client/C2Client/Scripts/startListenerHttp8443.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/C2Client/C2Client/Scripts/startListenerHttp8443.py -------------------------------------------------------------------------------- /C2Client/C2Client/Scripts/template.py.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/C2Client/C2Client/Scripts/template.py.example -------------------------------------------------------------------------------- /C2Client/C2Client/SessionPanel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/C2Client/C2Client/SessionPanel.py -------------------------------------------------------------------------------- /C2Client/C2Client/ShellCodeModules.conf: -------------------------------------------------------------------------------- 1 | https://github.com/maxDcb/DreamWalkers.git -------------------------------------------------------------------------------- /C2Client/C2Client/ShellCodeModules/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /C2Client/C2Client/TerminalModules/Batcave/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/C2Client/C2Client/TerminalModules/Batcave/.gitignore -------------------------------------------------------------------------------- /C2Client/C2Client/TerminalModules/Batcave/batcave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/C2Client/C2Client/TerminalModules/Batcave/batcave.py -------------------------------------------------------------------------------- /C2Client/C2Client/TerminalModules/Credentials/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ -------------------------------------------------------------------------------- /C2Client/C2Client/TerminalModules/Credentials/credentials.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/C2Client/C2Client/TerminalModules/Credentials/credentials.py -------------------------------------------------------------------------------- /C2Client/C2Client/TerminalModules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C2Client/C2Client/TerminalPanel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/C2Client/C2Client/TerminalPanel.py -------------------------------------------------------------------------------- /C2Client/C2Client/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /C2Client/C2Client/grpcClient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/C2Client/C2Client/grpcClient.py -------------------------------------------------------------------------------- /C2Client/C2Client/images/firewall.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/C2Client/C2Client/images/firewall.svg -------------------------------------------------------------------------------- /C2Client/C2Client/images/linux.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/C2Client/C2Client/images/linux.svg -------------------------------------------------------------------------------- /C2Client/C2Client/images/linuxhighpriv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/C2Client/C2Client/images/linuxhighpriv.svg -------------------------------------------------------------------------------- /C2Client/C2Client/images/pc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/C2Client/C2Client/images/pc.svg -------------------------------------------------------------------------------- /C2Client/C2Client/images/windowshighpriv.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/C2Client/C2Client/images/windowshighpriv.svg -------------------------------------------------------------------------------- /C2Client/C2Client/libGrpcMessages/build/py/TeamServerApi_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/C2Client/C2Client/libGrpcMessages/build/py/TeamServerApi_pb2.py -------------------------------------------------------------------------------- /C2Client/C2Client/libGrpcMessages/build/py/TeamServerApi_pb2_grpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/C2Client/C2Client/libGrpcMessages/build/py/TeamServerApi_pb2_grpc.py -------------------------------------------------------------------------------- /C2Client/C2Client/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /C2Client/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/C2Client/pyproject.toml -------------------------------------------------------------------------------- /C2Client/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/C2Client/requirements.txt -------------------------------------------------------------------------------- /C2Client/tests/conftest.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | os.environ.setdefault("QT_QPA_PLATFORM", "offscreen") 4 | -------------------------------------------------------------------------------- /C2Client/tests/test_console_panel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/C2Client/tests/test_console_panel.py -------------------------------------------------------------------------------- /C2Client/tests/test_grpc_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/C2Client/tests/test_grpc_client.py -------------------------------------------------------------------------------- /C2Client/tests/test_gui_startup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/C2Client/tests/test_gui_startup.py -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/README.md -------------------------------------------------------------------------------- /Release/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/Release/.gitignore -------------------------------------------------------------------------------- /Release/Beacons/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | 4 | -------------------------------------------------------------------------------- /Release/Modules/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /Release/Scripts/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /Release/TeamServer/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /Release/TeamServer/logs/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /Release/Tools/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /Release/www/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /certs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/certs/CMakeLists.txt -------------------------------------------------------------------------------- /certs/sslBeaconHttps/genSslCert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/certs/sslBeaconHttps/genSslCert.sh -------------------------------------------------------------------------------- /certs/sslTeamServ/genSslCert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/certs/sslTeamServ/genSslCert.sh -------------------------------------------------------------------------------- /conan_provider.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/conan_provider.cmake -------------------------------------------------------------------------------- /conanfile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/conanfile.txt -------------------------------------------------------------------------------- /images/AddListener.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/images/AddListener.png -------------------------------------------------------------------------------- /images/AddListenerTypes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/images/AddListenerTypes.png -------------------------------------------------------------------------------- /images/AssemblyExecMimikatz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/images/AssemblyExecMimikatz.png -------------------------------------------------------------------------------- /images/Exploration1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/images/Exploration1.png -------------------------------------------------------------------------------- /images/GenerateDropper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/images/GenerateDropper.png -------------------------------------------------------------------------------- /images/Listeners.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/images/Listeners.png -------------------------------------------------------------------------------- /images/ListenersAndSessions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/images/ListenersAndSessions.png -------------------------------------------------------------------------------- /images/ListenersAndSessions2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/images/ListenersAndSessions2.png -------------------------------------------------------------------------------- /images/NewSession.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/images/NewSession.png -------------------------------------------------------------------------------- /images/ReleaseModulesBeacons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/images/ReleaseModulesBeacons.png -------------------------------------------------------------------------------- /images/ReleaseTeamServerClient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/images/ReleaseTeamServerClient.png -------------------------------------------------------------------------------- /images/SessionInteract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/images/SessionInteract.png -------------------------------------------------------------------------------- /images/TeamServerLaunch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/images/TeamServerLaunch.png -------------------------------------------------------------------------------- /images/architecture.drawio: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/images/architecture.drawio -------------------------------------------------------------------------------- /images/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/images/architecture.png -------------------------------------------------------------------------------- /images/coffDir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/images/coffDir.png -------------------------------------------------------------------------------- /images/loadModule.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/images/loadModule.png -------------------------------------------------------------------------------- /libs/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/libs/CMakeLists.txt -------------------------------------------------------------------------------- /libs/libGrpcMessages/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 3.24) 2 | 3 | add_subdirectory(build/cpp/) -------------------------------------------------------------------------------- /libs/libGrpcMessages/build/cpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/libs/libGrpcMessages/build/cpp/CMakeLists.txt -------------------------------------------------------------------------------- /libs/libGrpcMessages/build/cpp/src/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !MakefileLinux 4 | -------------------------------------------------------------------------------- /libs/libGrpcMessages/src/TeamServerApi.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/libs/libGrpcMessages/src/TeamServerApi.proto -------------------------------------------------------------------------------- /libs/libMemoryModuleDumy/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/libs/libMemoryModuleDumy/CMakeLists.txt -------------------------------------------------------------------------------- /libs/libMemoryModuleDumy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/libs/libMemoryModuleDumy/README.md -------------------------------------------------------------------------------- /libs/libMemoryModuleDumy/src/MemoryModule.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/libs/libMemoryModuleDumy/src/MemoryModule.cpp -------------------------------------------------------------------------------- /libs/libMemoryModuleDumy/src/MemoryModule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/libs/libMemoryModuleDumy/src/MemoryModule.h -------------------------------------------------------------------------------- /libs/libMemoryModuleDumy/tests/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/libs/libMemoryModuleDumy/tests/CMakeLists.txt -------------------------------------------------------------------------------- /libs/libMemoryModuleDumy/tests/Tests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/libs/libMemoryModuleDumy/tests/Tests.cpp -------------------------------------------------------------------------------- /libs/libMemoryModuleDumy/tests/libtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/libs/libMemoryModuleDumy/tests/libtest.cpp -------------------------------------------------------------------------------- /libs/libPipeHandlerDumy/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/libs/libPipeHandlerDumy/CMakeLists.txt -------------------------------------------------------------------------------- /libs/libPipeHandlerDumy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/libs/libPipeHandlerDumy/README.md -------------------------------------------------------------------------------- /libs/libPipeHandlerDumy/src/PipeHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/libs/libPipeHandlerDumy/src/PipeHandler.cpp -------------------------------------------------------------------------------- /libs/libPipeHandlerDumy/src/PipeHandler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/libs/libPipeHandlerDumy/src/PipeHandler.hpp -------------------------------------------------------------------------------- /majSubmodules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/majSubmodules.sh -------------------------------------------------------------------------------- /teamServer/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/teamServer/CMakeLists.txt -------------------------------------------------------------------------------- /teamServer/teamServer/TeamServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/teamServer/teamServer/TeamServer.cpp -------------------------------------------------------------------------------- /teamServer/teamServer/TeamServer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/teamServer/teamServer/TeamServer.hpp -------------------------------------------------------------------------------- /teamServer/teamServer/TeamServerConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/teamServer/teamServer/TeamServerConfig.json -------------------------------------------------------------------------------- /teamServer/teamServer/auth_credentials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/teamServer/teamServer/auth_credentials.json -------------------------------------------------------------------------------- /teamServer/tests/testsTestServer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/teamServer/tests/testsTestServer.cpp -------------------------------------------------------------------------------- /thirdParty/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/thirdParty/CMakeLists.txt -------------------------------------------------------------------------------- /thirdParty/nlohmann/json.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxDcb/C2TeamServer/HEAD/thirdParty/nlohmann/json.hpp --------------------------------------------------------------------------------