Skip to content

Commit 433bf45

Browse files
authored
Merge pull request #15 from maxDcb/develop
Develop
2 parents 0afdbec + 3c78f1b commit 433bf45

File tree

21 files changed

+556
-598
lines changed

21 files changed

+556
-598
lines changed

.gitmodules

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,6 @@
1919
[submodule "libs/libSocks5"]
2020
path = libs/libSocks5
2121
url = https://github.com/maxDcb/libSocks5.git
22-
[submodule "client/PowershellWebDelivery"]
23-
path = client/PowershellWebDelivery
24-
url = https://github.com/maxDcb/PowershellWebDelivery.git
25-
[submodule "client/PeDropper"]
26-
path = client/PeDropper
27-
url = https://github.com/maxDcb/PeDropper.git
28-
[submodule "client/GoDroplets"]
29-
path = client/GoDroplets
30-
url = https://github.com/almounah/GoDroplets
3122
[submodule "libs/libSocketHandler"]
3223
path = libs/libSocketHandler
3324
url = https://github.com/maxDcb/libSocketHandler.git

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@ include_directories(${CMAKE_INCLUDE_PATH})
2828

2929
option(WITH_TESTS "Compile for tests" ON)
3030

31+
option(BUILD_TEAMSERVER "Enable Teamserver config" ON)
3132
add_definitions(-DBUILD_TEAMSERVER)
33+
3234
if(WITH_TESTS)
3335
add_definitions(-DBUILD_TESTS)
3436
set(SPDLOG_ACTIVE_LEVEL SPDLOG_LEVEL_DEBUG)
@@ -61,8 +63,6 @@ add_subdirectory(certs)
6163
add_subdirectory(client)
6264

6365
if(WITH_TESTS)
64-
add_subdirectory(core/beacon)
65-
add_subdirectory(core/beacon/tests)
6666
add_subdirectory(core/listener/tests)
6767
endif()
6868

README.md

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -49,16 +49,6 @@ cd Release/Client
4949
python3 GUI.py --ip 127.0.0.0 --port 50051 --dev
5050
```
5151

52-
The following packages are required to run the Client:
53-
54-
```
55-
pip3 install pycryptodome
56-
pip3 install grpcio==1.66.1
57-
pip3 install PyQt5
58-
pip3 install pyqtdarktheme
59-
pip3 install protobuf==5.27.0
60-
```
61-
6252
## Wiki
6353

6454
For more information, please visit the [wiki](https://github.com/maxDcb/C2TeamServer/wiki)

client/CMakeLists.txt

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,9 @@ foreach(ClientFile ${ClientFiles})
88
endforeach()
99

1010
file(COPY images DESTINATION ${CMAKE_SOURCE_DIR}/Release/Client/)
11-
file(COPY Batcave DESTINATION ${CMAKE_SOURCE_DIR}/Release/Client/)
1211

13-
file(COPY Credentials DESTINATION ${CMAKE_SOURCE_DIR}/Release/Client/)
12+
file(COPY TerminalModules DESTINATION ${CMAKE_SOURCE_DIR}/Release/Client/)
13+
file(COPY DropperModules DESTINATION ${CMAKE_SOURCE_DIR}/Release/Client/)
1414

15-
file(COPY PowershellWebDelivery DESTINATION ${CMAKE_SOURCE_DIR}/Release/Client/)
16-
file(COPY PeDropper DESTINATION ${CMAKE_SOURCE_DIR}/Release/Client/)
17-
file(COPY GoDroplets DESTINATION ${CMAKE_SOURCE_DIR}/Release/Client/)
15+
file(COPY DropperModules.conf DESTINATION ${CMAKE_SOURCE_DIR}/Release/Client/)
1816

client/ConsolePanel.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
EndInstruction = "end"
2626
ListenerInstruction = "listener"
2727
LoadModuleInstruction = "loadModule"
28-
SocksInstruction = "socks"
2928

3029
AssemblyExecInstruction = "assemblyExec"
3130
UploadInstruction = "upload"
@@ -228,10 +227,6 @@
228227
(SpawnAsInstruction,[
229228
('user password implant.exe', []),
230229
]),
231-
(SocksInstruction,[
232-
('start 1080', []),
233-
('stop', []),
234-
]),
235230
(EvasionInstruction,[
236231
('CheckHooks', []),
237232
('Unhook', []),

client/DropperModules.conf

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
https://github.com/maxDcb/PeDropper
2+
https://github.com/maxDcb/PowershellWebDelivery
3+
https://github.com/maxDcb/PeInjectorSyscall
4+
https://github.com/almounah/GoDroplets.git
5+
https://github.com/maxDcb/ElfDropper.git
6+
https://github.com/maxDcb/EarlyCascade.git

client/DropperModules/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
*
2+
!.gitignore

client/GoDroplets

Lines changed: 0 additions & 1 deletion
This file was deleted.

client/PeDropper

Lines changed: 0 additions & 1 deletion
This file was deleted.

client/PowershellWebDelivery

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)