├── Agent ├── .vscode │ ├── c_cpp_properties.json │ ├── settings.json │ └── tasks.json ├── Include │ ├── Config.conf │ ├── Config.h │ ├── Core │ │ ├── Initialiser.h │ │ ├── Registration.h │ │ └── Tasks │ │ │ ├── Core.h │ │ │ ├── Modules │ │ │ ├── Accessory.h │ │ │ ├── Execution.h │ │ │ ├── Injection.h │ │ │ └── Socks5.h │ │ │ └── Tasks.h │ ├── Cryptography │ │ ├── Base32.h │ │ └── Encryption.h │ ├── Debug.h │ ├── Hams.h │ ├── Macro │ │ └── Macro.h │ ├── Packer │ │ └── Packer.h │ ├── Parser │ │ └── Parser.h │ ├── Support │ │ ├── General.h │ │ ├── Memory.h │ │ ├── Network.h │ │ ├── Random.h │ │ └── String.h │ └── Transport │ │ ├── DNS.h │ │ └── Transport.h ├── Source │ ├── Core │ │ ├── Initialiser.c │ │ ├── Registration.c │ │ └── Tasks │ │ │ ├── Core.c │ │ │ ├── Modules │ │ │ ├── Accessory.c │ │ │ ├── Execution.c │ │ │ ├── Injection.c │ │ │ └── Socks5.c │ │ │ └── Tasks.c │ ├── Cryptography │ │ ├── Base32.c │ │ └── Encryption.c │ ├── Packer │ │ └── Packer.c │ ├── Parser │ │ └── Parser.c │ ├── Support │ │ ├── General.c │ │ ├── Memory.c │ │ ├── Network.c │ │ ├── Random.c │ │ └── String.c │ ├── Transport │ │ ├── DNS.c │ │ └── Transport.c │ └── main.c ├── bin │ └── test.tmp └── makefile ├── Client ├── CMakeFiles │ ├── 3.22.1 │ │ ├── CMakeCXXCompiler.cmake │ │ ├── CMakeDetermineCompilerABI_CXX.bin │ │ ├── CMakeSystem.cmake │ │ └── CompilerIdCXX │ │ │ ├── CMakeCXXCompilerId.cpp │ │ │ └── a.out │ ├── Ather.dir │ │ ├── DependInfo.cmake │ │ ├── build.make │ │ ├── cmake_clean.cmake │ │ ├── compiler_depend.make │ │ ├── compiler_depend.ts │ │ ├── depend.make │ │ ├── flags.make │ │ ├── link.txt │ │ └── progress.make │ ├── Ather_autogen.dir │ │ ├── AutoRcc_rc_EWIEGA46WW_Info.json │ │ ├── AutoRcc_rc_EWIEGA46WW_Lock.lock │ │ ├── AutoRcc_rc_EWIEGA46WW_Used.txt │ │ ├── AutogenInfo.json │ │ ├── DependInfo.cmake │ │ ├── build.make │ │ ├── cmake_clean.cmake │ │ ├── compiler_depend.make │ │ ├── compiler_depend.ts │ │ └── progress.make │ ├── CMakeDirectoryInformation.cmake │ ├── CMakeOutput.log │ ├── CMakeRuleHashes.txt │ ├── Makefile.cmake │ ├── Makefile2 │ ├── TargetDirectories.txt │ ├── cmake.check_cache │ └── progress.marks ├── CMakeLists.txt ├── Image │ ├── 2.jpg │ ├── LoginBackGround.jpg │ ├── LoginBackGround1.jpg │ ├── Picture12.png │ ├── Thumbs.db │ ├── WareedIcon.png │ ├── _8d549e5e-f2e1-4738-95c7-e12f9e1e437b.jpg │ ├── _a7c3989e-11ae-42a2-bd82-24c4d266085d.jpg │ └── icon │ │ └── pngwing.com.png ├── Include │ ├── about.h │ ├── addlistener.hpp │ ├── athermainwindow.hpp │ ├── c2config.h │ ├── command │ │ └── command.h │ ├── generatepayload.h │ ├── generatewaiting.h │ ├── global.hpp │ ├── helper │ │ ├── base.hpp │ │ ├── colortext.hpp │ │ ├── macro.hpp │ │ └── wmessagebox.hpp │ ├── interacttab.hpp │ ├── listener.hpp │ ├── login.hpp │ ├── setlistener.h │ ├── timecell.h │ └── transport │ │ ├── connector.hpp │ │ └── packager.hpp ├── Makefile ├── Source │ ├── about.cpp │ ├── addlistener.cpp │ ├── athermainwindow.cpp │ ├── c2config.cpp │ ├── command │ │ ├── command.cpp │ │ ├── commandexecute.cpp │ │ └── commandlist.cpp │ ├── generatepayload.cpp │ ├── generatewaiting.cpp │ ├── global.cpp │ ├── helper │ │ ├── base.cpp │ │ ├── colortext.cpp │ │ └── wmessagebox.cpp │ ├── interacttab.cpp │ ├── listener.cpp │ ├── login.cpp │ ├── main.cpp │ ├── setlistener.cpp │ ├── timecell.cpp │ └── transport │ │ ├── connector.cpp │ │ └── packager.cpp ├── UserInterface │ ├── about.ui │ ├── addlistener.ui │ ├── athermainwindow.ui │ ├── c2config.ui │ ├── generatepayload.ui │ ├── generatewaiting.ui │ ├── interacttab.ui │ ├── listener.ui │ ├── login.ui │ └── setlistener.ui ├── cmake_install.cmake └── rc.qrc ├── LICENSE.txt ├── README.md ├── Run.sh ├── TeamServer ├── client │ ├── clienthandler.go │ ├── connection.go │ ├── dispatcher.go │ ├── initializer.go │ ├── packger.go │ └── taskmanager.go ├── core │ ├── core.go │ ├── dispatcher.go │ ├── helper.go │ ├── registration.go │ └── tasks.go ├── cryptography │ └── base32.go ├── database │ ├── database.go │ ├── db_config.go │ ├── db_listener.go │ ├── db_target.go │ ├── db_task.go │ └── db_task_result.go ├── debug │ ├── colors.go │ ├── debug.go │ └── global.go ├── go.mod ├── go.sum ├── macro │ └── macro.go ├── main.go ├── makefile ├── modules │ └── socks5.go ├── packer │ └── packer.go ├── parser │ └── parser.go ├── support │ ├── build_agent.go │ ├── config.go │ └── support.go └── transport │ └── dns.go └── config.json /Agent/.vscode/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Agent/.vscode/c_cpp_properties.json -------------------------------------------------------------------------------- /Agent/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Agent/.vscode/settings.json -------------------------------------------------------------------------------- /Agent/.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Agent/.vscode/tasks.json -------------------------------------------------------------------------------- /Agent/Include/Config.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Agent/Include/Config.conf -------------------------------------------------------------------------------- /Agent/Include/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Agent/Include/Config.h -------------------------------------------------------------------------------- /Agent/Include/Core/Initialiser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Agent/Include/Core/Initialiser.h -------------------------------------------------------------------------------- /Agent/Include/Core/Registration.h: -------------------------------------------------------------------------------- 1 | 2 | #pragma once 3 | 4 | int Registration(); -------------------------------------------------------------------------------- /Agent/Include/Core/Tasks/Core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Agent/Include/Core/Tasks/Core.h -------------------------------------------------------------------------------- /Agent/Include/Core/Tasks/Modules/Accessory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Agent/Include/Core/Tasks/Modules/Accessory.h -------------------------------------------------------------------------------- /Agent/Include/Core/Tasks/Modules/Execution.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Agent/Include/Core/Tasks/Modules/Execution.h -------------------------------------------------------------------------------- /Agent/Include/Core/Tasks/Modules/Injection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Agent/Include/Core/Tasks/Modules/Injection.h -------------------------------------------------------------------------------- /Agent/Include/Core/Tasks/Modules/Socks5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Agent/Include/Core/Tasks/Modules/Socks5.h -------------------------------------------------------------------------------- /Agent/Include/Core/Tasks/Tasks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Agent/Include/Core/Tasks/Tasks.h -------------------------------------------------------------------------------- /Agent/Include/Cryptography/Base32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Agent/Include/Cryptography/Base32.h -------------------------------------------------------------------------------- /Agent/Include/Cryptography/Encryption.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Agent/Include/Cryptography/Encryption.h -------------------------------------------------------------------------------- /Agent/Include/Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Agent/Include/Debug.h -------------------------------------------------------------------------------- /Agent/Include/Hams.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Agent/Include/Hams.h -------------------------------------------------------------------------------- /Agent/Include/Macro/Macro.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Agent/Include/Macro/Macro.h -------------------------------------------------------------------------------- /Agent/Include/Packer/Packer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Agent/Include/Packer/Packer.h -------------------------------------------------------------------------------- /Agent/Include/Parser/Parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Agent/Include/Parser/Parser.h -------------------------------------------------------------------------------- /Agent/Include/Support/General.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | 4 | int VerifyTask(char * IPv6); -------------------------------------------------------------------------------- /Agent/Include/Support/Memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Agent/Include/Support/Memory.h -------------------------------------------------------------------------------- /Agent/Include/Support/Network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Agent/Include/Support/Network.h -------------------------------------------------------------------------------- /Agent/Include/Support/Random.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Agent/Include/Support/Random.h -------------------------------------------------------------------------------- /Agent/Include/Support/String.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Agent/Include/Support/String.h -------------------------------------------------------------------------------- /Agent/Include/Transport/DNS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Agent/Include/Transport/DNS.h -------------------------------------------------------------------------------- /Agent/Include/Transport/Transport.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Agent/Include/Transport/Transport.h -------------------------------------------------------------------------------- /Agent/Source/Core/Initialiser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Agent/Source/Core/Initialiser.c -------------------------------------------------------------------------------- /Agent/Source/Core/Registration.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Agent/Source/Core/Registration.c -------------------------------------------------------------------------------- /Agent/Source/Core/Tasks/Core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Agent/Source/Core/Tasks/Core.c -------------------------------------------------------------------------------- /Agent/Source/Core/Tasks/Modules/Accessory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Agent/Source/Core/Tasks/Modules/Accessory.c -------------------------------------------------------------------------------- /Agent/Source/Core/Tasks/Modules/Execution.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Agent/Source/Core/Tasks/Modules/Execution.c -------------------------------------------------------------------------------- /Agent/Source/Core/Tasks/Modules/Injection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Agent/Source/Core/Tasks/Modules/Injection.c -------------------------------------------------------------------------------- /Agent/Source/Core/Tasks/Modules/Socks5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Agent/Source/Core/Tasks/Modules/Socks5.c -------------------------------------------------------------------------------- /Agent/Source/Core/Tasks/Tasks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Agent/Source/Core/Tasks/Tasks.c -------------------------------------------------------------------------------- /Agent/Source/Cryptography/Base32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Agent/Source/Cryptography/Base32.c -------------------------------------------------------------------------------- /Agent/Source/Cryptography/Encryption.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Agent/Source/Cryptography/Encryption.c -------------------------------------------------------------------------------- /Agent/Source/Packer/Packer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Agent/Source/Packer/Packer.c -------------------------------------------------------------------------------- /Agent/Source/Parser/Parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Agent/Source/Parser/Parser.c -------------------------------------------------------------------------------- /Agent/Source/Support/General.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Agent/Source/Support/General.c -------------------------------------------------------------------------------- /Agent/Source/Support/Memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Agent/Source/Support/Memory.c -------------------------------------------------------------------------------- /Agent/Source/Support/Network.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Agent/Source/Support/Network.c -------------------------------------------------------------------------------- /Agent/Source/Support/Random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Agent/Source/Support/Random.c -------------------------------------------------------------------------------- /Agent/Source/Support/String.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Agent/Source/Support/String.c -------------------------------------------------------------------------------- /Agent/Source/Transport/DNS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Agent/Source/Transport/DNS.c -------------------------------------------------------------------------------- /Agent/Source/Transport/Transport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Agent/Source/Transport/Transport.c -------------------------------------------------------------------------------- /Agent/Source/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Agent/Source/main.c -------------------------------------------------------------------------------- /Agent/bin/test.tmp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Agent/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Agent/makefile -------------------------------------------------------------------------------- /Client/CMakeFiles/3.22.1/CMakeCXXCompiler.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/CMakeFiles/3.22.1/CMakeCXXCompiler.cmake -------------------------------------------------------------------------------- /Client/CMakeFiles/3.22.1/CMakeDetermineCompilerABI_CXX.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/CMakeFiles/3.22.1/CMakeDetermineCompilerABI_CXX.bin -------------------------------------------------------------------------------- /Client/CMakeFiles/3.22.1/CMakeSystem.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/CMakeFiles/3.22.1/CMakeSystem.cmake -------------------------------------------------------------------------------- /Client/CMakeFiles/3.22.1/CompilerIdCXX/CMakeCXXCompilerId.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/CMakeFiles/3.22.1/CompilerIdCXX/CMakeCXXCompilerId.cpp -------------------------------------------------------------------------------- /Client/CMakeFiles/3.22.1/CompilerIdCXX/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/CMakeFiles/3.22.1/CompilerIdCXX/a.out -------------------------------------------------------------------------------- /Client/CMakeFiles/Ather.dir/DependInfo.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/CMakeFiles/Ather.dir/DependInfo.cmake -------------------------------------------------------------------------------- /Client/CMakeFiles/Ather.dir/build.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/CMakeFiles/Ather.dir/build.make -------------------------------------------------------------------------------- /Client/CMakeFiles/Ather.dir/cmake_clean.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/CMakeFiles/Ather.dir/cmake_clean.cmake -------------------------------------------------------------------------------- /Client/CMakeFiles/Ather.dir/compiler_depend.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/CMakeFiles/Ather.dir/compiler_depend.make -------------------------------------------------------------------------------- /Client/CMakeFiles/Ather.dir/compiler_depend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/CMakeFiles/Ather.dir/compiler_depend.ts -------------------------------------------------------------------------------- /Client/CMakeFiles/Ather.dir/depend.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/CMakeFiles/Ather.dir/depend.make -------------------------------------------------------------------------------- /Client/CMakeFiles/Ather.dir/flags.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/CMakeFiles/Ather.dir/flags.make -------------------------------------------------------------------------------- /Client/CMakeFiles/Ather.dir/link.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/CMakeFiles/Ather.dir/link.txt -------------------------------------------------------------------------------- /Client/CMakeFiles/Ather.dir/progress.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/CMakeFiles/Ather.dir/progress.make -------------------------------------------------------------------------------- /Client/CMakeFiles/Ather_autogen.dir/AutoRcc_rc_EWIEGA46WW_Info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/CMakeFiles/Ather_autogen.dir/AutoRcc_rc_EWIEGA46WW_Info.json -------------------------------------------------------------------------------- /Client/CMakeFiles/Ather_autogen.dir/AutoRcc_rc_EWIEGA46WW_Lock.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Client/CMakeFiles/Ather_autogen.dir/AutoRcc_rc_EWIEGA46WW_Used.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/CMakeFiles/Ather_autogen.dir/AutoRcc_rc_EWIEGA46WW_Used.txt -------------------------------------------------------------------------------- /Client/CMakeFiles/Ather_autogen.dir/AutogenInfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/CMakeFiles/Ather_autogen.dir/AutogenInfo.json -------------------------------------------------------------------------------- /Client/CMakeFiles/Ather_autogen.dir/DependInfo.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/CMakeFiles/Ather_autogen.dir/DependInfo.cmake -------------------------------------------------------------------------------- /Client/CMakeFiles/Ather_autogen.dir/build.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/CMakeFiles/Ather_autogen.dir/build.make -------------------------------------------------------------------------------- /Client/CMakeFiles/Ather_autogen.dir/cmake_clean.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/CMakeFiles/Ather_autogen.dir/cmake_clean.cmake -------------------------------------------------------------------------------- /Client/CMakeFiles/Ather_autogen.dir/compiler_depend.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/CMakeFiles/Ather_autogen.dir/compiler_depend.make -------------------------------------------------------------------------------- /Client/CMakeFiles/Ather_autogen.dir/compiler_depend.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/CMakeFiles/Ather_autogen.dir/compiler_depend.ts -------------------------------------------------------------------------------- /Client/CMakeFiles/Ather_autogen.dir/progress.make: -------------------------------------------------------------------------------- 1 | CMAKE_PROGRESS_1 = 36 2 | 3 | -------------------------------------------------------------------------------- /Client/CMakeFiles/CMakeDirectoryInformation.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/CMakeFiles/CMakeDirectoryInformation.cmake -------------------------------------------------------------------------------- /Client/CMakeFiles/CMakeOutput.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/CMakeFiles/CMakeOutput.log -------------------------------------------------------------------------------- /Client/CMakeFiles/CMakeRuleHashes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/CMakeFiles/CMakeRuleHashes.txt -------------------------------------------------------------------------------- /Client/CMakeFiles/Makefile.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/CMakeFiles/Makefile.cmake -------------------------------------------------------------------------------- /Client/CMakeFiles/Makefile2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/CMakeFiles/Makefile2 -------------------------------------------------------------------------------- /Client/CMakeFiles/TargetDirectories.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/CMakeFiles/TargetDirectories.txt -------------------------------------------------------------------------------- /Client/CMakeFiles/cmake.check_cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/CMakeFiles/cmake.check_cache -------------------------------------------------------------------------------- /Client/CMakeFiles/progress.marks: -------------------------------------------------------------------------------- 1 | 36 2 | -------------------------------------------------------------------------------- /Client/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/CMakeLists.txt -------------------------------------------------------------------------------- /Client/Image/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/Image/2.jpg -------------------------------------------------------------------------------- /Client/Image/LoginBackGround.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/Image/LoginBackGround.jpg -------------------------------------------------------------------------------- /Client/Image/LoginBackGround1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/Image/LoginBackGround1.jpg -------------------------------------------------------------------------------- /Client/Image/Picture12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/Image/Picture12.png -------------------------------------------------------------------------------- /Client/Image/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/Image/Thumbs.db -------------------------------------------------------------------------------- /Client/Image/WareedIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/Image/WareedIcon.png -------------------------------------------------------------------------------- /Client/Image/_8d549e5e-f2e1-4738-95c7-e12f9e1e437b.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/Image/_8d549e5e-f2e1-4738-95c7-e12f9e1e437b.jpg -------------------------------------------------------------------------------- /Client/Image/_a7c3989e-11ae-42a2-bd82-24c4d266085d.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/Image/_a7c3989e-11ae-42a2-bd82-24c4d266085d.jpg -------------------------------------------------------------------------------- /Client/Image/icon/pngwing.com.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/Image/icon/pngwing.com.png -------------------------------------------------------------------------------- /Client/Include/about.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/Include/about.h -------------------------------------------------------------------------------- /Client/Include/addlistener.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/Include/addlistener.hpp -------------------------------------------------------------------------------- /Client/Include/athermainwindow.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/Include/athermainwindow.hpp -------------------------------------------------------------------------------- /Client/Include/c2config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/Include/c2config.h -------------------------------------------------------------------------------- /Client/Include/command/command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/Include/command/command.h -------------------------------------------------------------------------------- /Client/Include/generatepayload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/Include/generatepayload.h -------------------------------------------------------------------------------- /Client/Include/generatewaiting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/Include/generatewaiting.h -------------------------------------------------------------------------------- /Client/Include/global.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/Include/global.hpp -------------------------------------------------------------------------------- /Client/Include/helper/base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/Include/helper/base.hpp -------------------------------------------------------------------------------- /Client/Include/helper/colortext.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/Include/helper/colortext.hpp -------------------------------------------------------------------------------- /Client/Include/helper/macro.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/Include/helper/macro.hpp -------------------------------------------------------------------------------- /Client/Include/helper/wmessagebox.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/Include/helper/wmessagebox.hpp -------------------------------------------------------------------------------- /Client/Include/interacttab.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/Include/interacttab.hpp -------------------------------------------------------------------------------- /Client/Include/listener.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/Include/listener.hpp -------------------------------------------------------------------------------- /Client/Include/login.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/Include/login.hpp -------------------------------------------------------------------------------- /Client/Include/setlistener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/Include/setlistener.h -------------------------------------------------------------------------------- /Client/Include/timecell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/Include/timecell.h -------------------------------------------------------------------------------- /Client/Include/transport/connector.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/Include/transport/connector.hpp -------------------------------------------------------------------------------- /Client/Include/transport/packager.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/Include/transport/packager.hpp -------------------------------------------------------------------------------- /Client/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/Makefile -------------------------------------------------------------------------------- /Client/Source/about.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/Source/about.cpp -------------------------------------------------------------------------------- /Client/Source/addlistener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/Source/addlistener.cpp -------------------------------------------------------------------------------- /Client/Source/athermainwindow.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/Source/athermainwindow.cpp -------------------------------------------------------------------------------- /Client/Source/c2config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/Source/c2config.cpp -------------------------------------------------------------------------------- /Client/Source/command/command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/Source/command/command.cpp -------------------------------------------------------------------------------- /Client/Source/command/commandexecute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/Source/command/commandexecute.cpp -------------------------------------------------------------------------------- /Client/Source/command/commandlist.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/Source/command/commandlist.cpp -------------------------------------------------------------------------------- /Client/Source/generatepayload.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/Source/generatepayload.cpp -------------------------------------------------------------------------------- /Client/Source/generatewaiting.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/Source/generatewaiting.cpp -------------------------------------------------------------------------------- /Client/Source/global.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/Source/global.cpp -------------------------------------------------------------------------------- /Client/Source/helper/base.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/Source/helper/base.cpp -------------------------------------------------------------------------------- /Client/Source/helper/colortext.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/Source/helper/colortext.cpp -------------------------------------------------------------------------------- /Client/Source/helper/wmessagebox.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/Source/helper/wmessagebox.cpp -------------------------------------------------------------------------------- /Client/Source/interacttab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/Source/interacttab.cpp -------------------------------------------------------------------------------- /Client/Source/listener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/Source/listener.cpp -------------------------------------------------------------------------------- /Client/Source/login.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/Source/login.cpp -------------------------------------------------------------------------------- /Client/Source/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/Source/main.cpp -------------------------------------------------------------------------------- /Client/Source/setlistener.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/Source/setlistener.cpp -------------------------------------------------------------------------------- /Client/Source/timecell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/Source/timecell.cpp -------------------------------------------------------------------------------- /Client/Source/transport/connector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/Source/transport/connector.cpp -------------------------------------------------------------------------------- /Client/Source/transport/packager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/Source/transport/packager.cpp -------------------------------------------------------------------------------- /Client/UserInterface/about.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/UserInterface/about.ui -------------------------------------------------------------------------------- /Client/UserInterface/addlistener.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/UserInterface/addlistener.ui -------------------------------------------------------------------------------- /Client/UserInterface/athermainwindow.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/UserInterface/athermainwindow.ui -------------------------------------------------------------------------------- /Client/UserInterface/c2config.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/UserInterface/c2config.ui -------------------------------------------------------------------------------- /Client/UserInterface/generatepayload.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/UserInterface/generatepayload.ui -------------------------------------------------------------------------------- /Client/UserInterface/generatewaiting.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/UserInterface/generatewaiting.ui -------------------------------------------------------------------------------- /Client/UserInterface/interacttab.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/UserInterface/interacttab.ui -------------------------------------------------------------------------------- /Client/UserInterface/listener.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/UserInterface/listener.ui -------------------------------------------------------------------------------- /Client/UserInterface/login.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/UserInterface/login.ui -------------------------------------------------------------------------------- /Client/UserInterface/setlistener.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/UserInterface/setlistener.ui -------------------------------------------------------------------------------- /Client/cmake_install.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/cmake_install.cmake -------------------------------------------------------------------------------- /Client/rc.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Client/rc.qrc -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/README.md -------------------------------------------------------------------------------- /Run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/Run.sh -------------------------------------------------------------------------------- /TeamServer/client/clienthandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/TeamServer/client/clienthandler.go -------------------------------------------------------------------------------- /TeamServer/client/connection.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/TeamServer/client/connection.go -------------------------------------------------------------------------------- /TeamServer/client/dispatcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/TeamServer/client/dispatcher.go -------------------------------------------------------------------------------- /TeamServer/client/initializer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/TeamServer/client/initializer.go -------------------------------------------------------------------------------- /TeamServer/client/packger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/TeamServer/client/packger.go -------------------------------------------------------------------------------- /TeamServer/client/taskmanager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/TeamServer/client/taskmanager.go -------------------------------------------------------------------------------- /TeamServer/core/core.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/TeamServer/core/core.go -------------------------------------------------------------------------------- /TeamServer/core/dispatcher.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/TeamServer/core/dispatcher.go -------------------------------------------------------------------------------- /TeamServer/core/helper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/TeamServer/core/helper.go -------------------------------------------------------------------------------- /TeamServer/core/registration.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/TeamServer/core/registration.go -------------------------------------------------------------------------------- /TeamServer/core/tasks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/TeamServer/core/tasks.go -------------------------------------------------------------------------------- /TeamServer/cryptography/base32.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/TeamServer/cryptography/base32.go -------------------------------------------------------------------------------- /TeamServer/database/database.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/TeamServer/database/database.go -------------------------------------------------------------------------------- /TeamServer/database/db_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/TeamServer/database/db_config.go -------------------------------------------------------------------------------- /TeamServer/database/db_listener.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/TeamServer/database/db_listener.go -------------------------------------------------------------------------------- /TeamServer/database/db_target.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/TeamServer/database/db_target.go -------------------------------------------------------------------------------- /TeamServer/database/db_task.go: -------------------------------------------------------------------------------- 1 | package database 2 | -------------------------------------------------------------------------------- /TeamServer/database/db_task_result.go: -------------------------------------------------------------------------------- 1 | package database 2 | -------------------------------------------------------------------------------- /TeamServer/debug/colors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/TeamServer/debug/colors.go -------------------------------------------------------------------------------- /TeamServer/debug/debug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/TeamServer/debug/debug.go -------------------------------------------------------------------------------- /TeamServer/debug/global.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/TeamServer/debug/global.go -------------------------------------------------------------------------------- /TeamServer/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/TeamServer/go.mod -------------------------------------------------------------------------------- /TeamServer/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/TeamServer/go.sum -------------------------------------------------------------------------------- /TeamServer/macro/macro.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/TeamServer/macro/macro.go -------------------------------------------------------------------------------- /TeamServer/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/TeamServer/main.go -------------------------------------------------------------------------------- /TeamServer/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/TeamServer/makefile -------------------------------------------------------------------------------- /TeamServer/modules/socks5.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/TeamServer/modules/socks5.go -------------------------------------------------------------------------------- /TeamServer/packer/packer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/TeamServer/packer/packer.go -------------------------------------------------------------------------------- /TeamServer/parser/parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/TeamServer/parser/parser.go -------------------------------------------------------------------------------- /TeamServer/support/build_agent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/TeamServer/support/build_agent.go -------------------------------------------------------------------------------- /TeamServer/support/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/TeamServer/support/config.go -------------------------------------------------------------------------------- /TeamServer/support/support.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/TeamServer/support/support.go -------------------------------------------------------------------------------- /TeamServer/transport/dns.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/TeamServer/transport/dns.go -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Faisal-P27/WAREED-DNS-C2/HEAD/config.json --------------------------------------------------------------------------------