├── .gitignore ├── README.md ├── client ├── .gitattributes ├── .gitignore ├── README.md ├── XeytaCpipiW │ ├── Application.cpp │ ├── Application.h │ ├── ShellService.cpp │ ├── ShellService.h │ ├── XeytaCpipiW.vcxproj │ ├── XeytaCpipiW.vcxproj.filters │ ├── appdefs.h │ ├── concurrent │ │ └── core │ │ │ ├── Mutex.cpp │ │ │ ├── Mutex.h │ │ │ ├── Semaphore.cpp │ │ │ ├── Semaphore.h │ │ │ ├── Thread.cpp │ │ │ ├── Thread.h │ │ │ ├── ThreadArg.cpp │ │ │ └── ThreadArg.h │ ├── enums │ │ └── registry_entry.h │ ├── handlers │ │ ├── PersistenceHandler.cpp │ │ └── PersistenceHandler.h │ ├── main.cpp │ ├── models │ │ ├── errors.h │ │ ├── net_to_be_removed │ │ │ ├── Packet.cpp │ │ │ ├── Packet.h │ │ │ ├── PacketSysInfo.cpp │ │ │ └── PacketSysInfo.h │ │ └── sysinfodef.h │ ├── reverse_shell.h │ ├── services │ │ ├── ClipboardService.cpp │ │ ├── ClipboardService.h │ │ ├── DesktopService.cpp │ │ ├── DesktopService.h │ │ ├── FileSystemManagerBAK.cpp │ │ ├── FileSystemManagerBAK.h │ │ ├── GraphicsService.cpp │ │ ├── GraphicsService.h │ │ ├── InternetService.cpp │ │ ├── InternetService.h │ │ ├── LoggingService.cpp │ │ ├── LoggingService.h │ │ ├── MemoryManagementService.cpp │ │ ├── MemoryManagementService.h │ │ ├── MouseService.cpp │ │ ├── MouseService.h │ │ ├── NetClientService.cpp │ │ ├── NetClientService.h │ │ ├── NetServerService.cpp │ │ ├── NetServerService.h │ │ ├── NetServiceBAK.cpp │ │ ├── NetServiceBAK.h │ │ ├── PacketProcessor.cpp │ │ ├── PacketProcessor.h │ │ ├── PersistenceService.cpp │ │ ├── PersistenceService.h │ │ ├── ProcessService.cpp │ │ ├── ProcessService.h │ │ ├── RegistryManager.cpp │ │ ├── RegistryManager.h │ │ ├── SystemInfoService.cpp │ │ ├── SystemInfoService.h │ │ ├── TrollService.cpp │ │ ├── TrollService.h │ │ ├── UuidService.cpp │ │ └── UuidService.h │ └── ui │ │ ├── ConsoleReporter.cpp │ │ ├── ConsoleReporter.h │ │ └── mediators │ │ ├── GuiMediator.cpp │ │ └── GuiMediator.h └── XeytaCppWin32Client.sln ├── server ├── .gitattributes ├── .gitignore ├── Application.cpp ├── Application.h ├── Downloads │ ├── temp.out │ └── temp.txt ├── Resource.h ├── XeytaCpipiWClient.h ├── XeytaCpipiWClient.ico ├── XeytaCpipiWClient.rc ├── XeytaCpipiWClient.vcxproj ├── XeytaCpipiWClient.vcxproj.filters ├── XeytaCppWin32Server.sln ├── appdefs.h ├── main.cpp ├── models │ ├── Client.cpp │ ├── Client.h │ ├── CommandLineArguments.cpp │ └── CommandLineArguments.h ├── services │ ├── DesktopService.cpp │ ├── DesktopService.h │ ├── PacketProcessor.cpp │ ├── PacketProcessor.h │ ├── UuidService.cpp │ ├── UuidService.h │ └── net │ │ ├── NetClientService.cpp │ │ ├── NetClientService.h │ │ ├── NetServerService.cpp │ │ └── NetServerService.h ├── small.ico ├── targetver.h └── ui │ ├── console │ ├── AppConsole.cpp │ ├── AppConsole.h │ ├── ConsoleReporter.cpp │ ├── ConsoleReporter.h │ └── mediators │ │ ├── SimpleConsoleUiMediator.cpp │ │ └── SimpleConsoleUiMediator.h │ └── mediators │ ├── IUiMediator.cpp │ └── IUiMediator.h └── shared ├── ConcurrentLib ├── ConcurrentLib.vcxproj ├── ConcurrentLib.vcxproj.filters ├── core │ ├── Mutex.cpp │ ├── Mutex.h │ ├── Thread.cpp │ └── Thread.h ├── models │ └── errors.h ├── mutex │ ├── Win32CritialSectionMutex.cpp │ └── Win32CritialSectionMutex.h ├── pool │ ├── BasicThreadPool.cpp │ └── BasicThreadPool.h └── signals │ ├── ISignal.cpp │ ├── ISignal.h │ ├── StdCVSignal.cpp │ ├── StdCVSignal.h │ ├── Win32CVSignal.cpp │ ├── Win32CVSignal.h │ ├── Win32EventSignal.cpp │ └── Win32EventSignal.h ├── ConsoleLib ├── Console.cpp ├── Console.h ├── ConsoleLib.vcxproj └── ConsoleLib.vcxproj.filters ├── IOLib ├── IOLib.vcxproj ├── IOLib.vcxproj.filters ├── buffers │ ├── Buffer.cpp │ ├── Buffer.h │ ├── CursorBuffer.cpp │ └── CursorBuffer.h └── services │ ├── FileSystemService.cpp │ ├── FileSystemService.h │ ├── StringService.cpp │ └── StringService.h ├── MediaLib ├── DesktopService.cpp ├── DesktopService.h ├── MediaLib.vcxproj └── MediaLib.vcxproj.filters └── NetLib ├── NetLib.vcxproj ├── NetLib.vcxproj.filters ├── models └── errors.h ├── packets ├── Packet.cpp ├── Packet.h ├── PacketDownload.cpp ├── PacketDownload.h ├── PacketFileSystem.cpp ├── PacketFileSystem.h ├── PacketMediaResponse.cpp ├── PacketMediaResponse.h ├── PacketPresentation.cpp ├── PacketPresentation.h ├── PacketProcess.cpp ├── PacketProcess.h ├── PacketShell.cpp ├── PacketShell.h ├── PacketSysInfo.cpp ├── PacketSysInfo.h └── packetdefs.h └── services ├── BaseNetClientService.cpp ├── BaseNetClientService.h ├── BaseNetService.cpp └── BaseNetService.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/README.md -------------------------------------------------------------------------------- /client/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/client/.gitattributes -------------------------------------------------------------------------------- /client/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/client/.gitignore -------------------------------------------------------------------------------- /client/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /client/XeytaCpipiW/Application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/client/XeytaCpipiW/Application.cpp -------------------------------------------------------------------------------- /client/XeytaCpipiW/Application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/client/XeytaCpipiW/Application.h -------------------------------------------------------------------------------- /client/XeytaCpipiW/ShellService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/client/XeytaCpipiW/ShellService.cpp -------------------------------------------------------------------------------- /client/XeytaCpipiW/ShellService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/client/XeytaCpipiW/ShellService.h -------------------------------------------------------------------------------- /client/XeytaCpipiW/XeytaCpipiW.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/client/XeytaCpipiW/XeytaCpipiW.vcxproj -------------------------------------------------------------------------------- /client/XeytaCpipiW/XeytaCpipiW.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/client/XeytaCpipiW/XeytaCpipiW.vcxproj.filters -------------------------------------------------------------------------------- /client/XeytaCpipiW/appdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/client/XeytaCpipiW/appdefs.h -------------------------------------------------------------------------------- /client/XeytaCpipiW/concurrent/core/Mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/client/XeytaCpipiW/concurrent/core/Mutex.cpp -------------------------------------------------------------------------------- /client/XeytaCpipiW/concurrent/core/Mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/client/XeytaCpipiW/concurrent/core/Mutex.h -------------------------------------------------------------------------------- /client/XeytaCpipiW/concurrent/core/Semaphore.cpp: -------------------------------------------------------------------------------- 1 | #include "Semaphore.h" 2 | -------------------------------------------------------------------------------- /client/XeytaCpipiW/concurrent/core/Semaphore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/client/XeytaCpipiW/concurrent/core/Semaphore.h -------------------------------------------------------------------------------- /client/XeytaCpipiW/concurrent/core/Thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/client/XeytaCpipiW/concurrent/core/Thread.cpp -------------------------------------------------------------------------------- /client/XeytaCpipiW/concurrent/core/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/client/XeytaCpipiW/concurrent/core/Thread.h -------------------------------------------------------------------------------- /client/XeytaCpipiW/concurrent/core/ThreadArg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/client/XeytaCpipiW/concurrent/core/ThreadArg.cpp -------------------------------------------------------------------------------- /client/XeytaCpipiW/concurrent/core/ThreadArg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/client/XeytaCpipiW/concurrent/core/ThreadArg.h -------------------------------------------------------------------------------- /client/XeytaCpipiW/enums/registry_entry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/client/XeytaCpipiW/enums/registry_entry.h -------------------------------------------------------------------------------- /client/XeytaCpipiW/handlers/PersistenceHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/client/XeytaCpipiW/handlers/PersistenceHandler.cpp -------------------------------------------------------------------------------- /client/XeytaCpipiW/handlers/PersistenceHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/client/XeytaCpipiW/handlers/PersistenceHandler.h -------------------------------------------------------------------------------- /client/XeytaCpipiW/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/client/XeytaCpipiW/main.cpp -------------------------------------------------------------------------------- /client/XeytaCpipiW/models/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/client/XeytaCpipiW/models/errors.h -------------------------------------------------------------------------------- /client/XeytaCpipiW/models/net_to_be_removed/Packet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/client/XeytaCpipiW/models/net_to_be_removed/Packet.cpp -------------------------------------------------------------------------------- /client/XeytaCpipiW/models/net_to_be_removed/Packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/client/XeytaCpipiW/models/net_to_be_removed/Packet.h -------------------------------------------------------------------------------- /client/XeytaCpipiW/models/net_to_be_removed/PacketSysInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/client/XeytaCpipiW/models/net_to_be_removed/PacketSysInfo.cpp -------------------------------------------------------------------------------- /client/XeytaCpipiW/models/net_to_be_removed/PacketSysInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/client/XeytaCpipiW/models/net_to_be_removed/PacketSysInfo.h -------------------------------------------------------------------------------- /client/XeytaCpipiW/models/sysinfodef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/client/XeytaCpipiW/models/sysinfodef.h -------------------------------------------------------------------------------- /client/XeytaCpipiW/reverse_shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/client/XeytaCpipiW/reverse_shell.h -------------------------------------------------------------------------------- /client/XeytaCpipiW/services/ClipboardService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/client/XeytaCpipiW/services/ClipboardService.cpp -------------------------------------------------------------------------------- /client/XeytaCpipiW/services/ClipboardService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/client/XeytaCpipiW/services/ClipboardService.h -------------------------------------------------------------------------------- /client/XeytaCpipiW/services/DesktopService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/client/XeytaCpipiW/services/DesktopService.cpp -------------------------------------------------------------------------------- /client/XeytaCpipiW/services/DesktopService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/client/XeytaCpipiW/services/DesktopService.h -------------------------------------------------------------------------------- /client/XeytaCpipiW/services/FileSystemManagerBAK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/client/XeytaCpipiW/services/FileSystemManagerBAK.cpp -------------------------------------------------------------------------------- /client/XeytaCpipiW/services/FileSystemManagerBAK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/client/XeytaCpipiW/services/FileSystemManagerBAK.h -------------------------------------------------------------------------------- /client/XeytaCpipiW/services/GraphicsService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/client/XeytaCpipiW/services/GraphicsService.cpp -------------------------------------------------------------------------------- /client/XeytaCpipiW/services/GraphicsService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/client/XeytaCpipiW/services/GraphicsService.h -------------------------------------------------------------------------------- /client/XeytaCpipiW/services/InternetService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/client/XeytaCpipiW/services/InternetService.cpp -------------------------------------------------------------------------------- /client/XeytaCpipiW/services/InternetService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/client/XeytaCpipiW/services/InternetService.h -------------------------------------------------------------------------------- /client/XeytaCpipiW/services/LoggingService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/client/XeytaCpipiW/services/LoggingService.cpp -------------------------------------------------------------------------------- /client/XeytaCpipiW/services/LoggingService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/client/XeytaCpipiW/services/LoggingService.h -------------------------------------------------------------------------------- /client/XeytaCpipiW/services/MemoryManagementService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/client/XeytaCpipiW/services/MemoryManagementService.cpp -------------------------------------------------------------------------------- /client/XeytaCpipiW/services/MemoryManagementService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/client/XeytaCpipiW/services/MemoryManagementService.h -------------------------------------------------------------------------------- /client/XeytaCpipiW/services/MouseService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/client/XeytaCpipiW/services/MouseService.cpp -------------------------------------------------------------------------------- /client/XeytaCpipiW/services/MouseService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/client/XeytaCpipiW/services/MouseService.h -------------------------------------------------------------------------------- /client/XeytaCpipiW/services/NetClientService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/client/XeytaCpipiW/services/NetClientService.cpp -------------------------------------------------------------------------------- /client/XeytaCpipiW/services/NetClientService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/client/XeytaCpipiW/services/NetClientService.h -------------------------------------------------------------------------------- /client/XeytaCpipiW/services/NetServerService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/client/XeytaCpipiW/services/NetServerService.cpp -------------------------------------------------------------------------------- /client/XeytaCpipiW/services/NetServerService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/client/XeytaCpipiW/services/NetServerService.h -------------------------------------------------------------------------------- /client/XeytaCpipiW/services/NetServiceBAK.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/client/XeytaCpipiW/services/NetServiceBAK.cpp -------------------------------------------------------------------------------- /client/XeytaCpipiW/services/NetServiceBAK.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/client/XeytaCpipiW/services/NetServiceBAK.h -------------------------------------------------------------------------------- /client/XeytaCpipiW/services/PacketProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/client/XeytaCpipiW/services/PacketProcessor.cpp -------------------------------------------------------------------------------- /client/XeytaCpipiW/services/PacketProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/client/XeytaCpipiW/services/PacketProcessor.h -------------------------------------------------------------------------------- /client/XeytaCpipiW/services/PersistenceService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/client/XeytaCpipiW/services/PersistenceService.cpp -------------------------------------------------------------------------------- /client/XeytaCpipiW/services/PersistenceService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/client/XeytaCpipiW/services/PersistenceService.h -------------------------------------------------------------------------------- /client/XeytaCpipiW/services/ProcessService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/client/XeytaCpipiW/services/ProcessService.cpp -------------------------------------------------------------------------------- /client/XeytaCpipiW/services/ProcessService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/client/XeytaCpipiW/services/ProcessService.h -------------------------------------------------------------------------------- /client/XeytaCpipiW/services/RegistryManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/client/XeytaCpipiW/services/RegistryManager.cpp -------------------------------------------------------------------------------- /client/XeytaCpipiW/services/RegistryManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/client/XeytaCpipiW/services/RegistryManager.h -------------------------------------------------------------------------------- /client/XeytaCpipiW/services/SystemInfoService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/client/XeytaCpipiW/services/SystemInfoService.cpp -------------------------------------------------------------------------------- /client/XeytaCpipiW/services/SystemInfoService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/client/XeytaCpipiW/services/SystemInfoService.h -------------------------------------------------------------------------------- /client/XeytaCpipiW/services/TrollService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/client/XeytaCpipiW/services/TrollService.cpp -------------------------------------------------------------------------------- /client/XeytaCpipiW/services/TrollService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/client/XeytaCpipiW/services/TrollService.h -------------------------------------------------------------------------------- /client/XeytaCpipiW/services/UuidService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/client/XeytaCpipiW/services/UuidService.cpp -------------------------------------------------------------------------------- /client/XeytaCpipiW/services/UuidService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/client/XeytaCpipiW/services/UuidService.h -------------------------------------------------------------------------------- /client/XeytaCpipiW/ui/ConsoleReporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/client/XeytaCpipiW/ui/ConsoleReporter.cpp -------------------------------------------------------------------------------- /client/XeytaCpipiW/ui/ConsoleReporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/client/XeytaCpipiW/ui/ConsoleReporter.h -------------------------------------------------------------------------------- /client/XeytaCpipiW/ui/mediators/GuiMediator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/client/XeytaCpipiW/ui/mediators/GuiMediator.cpp -------------------------------------------------------------------------------- /client/XeytaCpipiW/ui/mediators/GuiMediator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/client/XeytaCpipiW/ui/mediators/GuiMediator.h -------------------------------------------------------------------------------- /client/XeytaCppWin32Client.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/client/XeytaCppWin32Client.sln -------------------------------------------------------------------------------- /server/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/server/.gitattributes -------------------------------------------------------------------------------- /server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/server/.gitignore -------------------------------------------------------------------------------- /server/Application.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/server/Application.cpp -------------------------------------------------------------------------------- /server/Application.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/server/Application.h -------------------------------------------------------------------------------- /server/Downloads/temp.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/server/Downloads/temp.out -------------------------------------------------------------------------------- /server/Downloads/temp.txt: -------------------------------------------------------------------------------- 1 | Hola 2 | Adiós 3 | Bye -------------------------------------------------------------------------------- /server/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/server/Resource.h -------------------------------------------------------------------------------- /server/XeytaCpipiWClient.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/server/XeytaCpipiWClient.h -------------------------------------------------------------------------------- /server/XeytaCpipiWClient.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/server/XeytaCpipiWClient.ico -------------------------------------------------------------------------------- /server/XeytaCpipiWClient.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/server/XeytaCpipiWClient.rc -------------------------------------------------------------------------------- /server/XeytaCpipiWClient.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/server/XeytaCpipiWClient.vcxproj -------------------------------------------------------------------------------- /server/XeytaCpipiWClient.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/server/XeytaCpipiWClient.vcxproj.filters -------------------------------------------------------------------------------- /server/XeytaCppWin32Server.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/server/XeytaCppWin32Server.sln -------------------------------------------------------------------------------- /server/appdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/server/appdefs.h -------------------------------------------------------------------------------- /server/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/server/main.cpp -------------------------------------------------------------------------------- /server/models/Client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/server/models/Client.cpp -------------------------------------------------------------------------------- /server/models/Client.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/server/models/Client.h -------------------------------------------------------------------------------- /server/models/CommandLineArguments.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/server/models/CommandLineArguments.cpp -------------------------------------------------------------------------------- /server/models/CommandLineArguments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/server/models/CommandLineArguments.h -------------------------------------------------------------------------------- /server/services/DesktopService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/server/services/DesktopService.cpp -------------------------------------------------------------------------------- /server/services/DesktopService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/server/services/DesktopService.h -------------------------------------------------------------------------------- /server/services/PacketProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/server/services/PacketProcessor.cpp -------------------------------------------------------------------------------- /server/services/PacketProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/server/services/PacketProcessor.h -------------------------------------------------------------------------------- /server/services/UuidService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/server/services/UuidService.cpp -------------------------------------------------------------------------------- /server/services/UuidService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/server/services/UuidService.h -------------------------------------------------------------------------------- /server/services/net/NetClientService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/server/services/net/NetClientService.cpp -------------------------------------------------------------------------------- /server/services/net/NetClientService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/server/services/net/NetClientService.h -------------------------------------------------------------------------------- /server/services/net/NetServerService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/server/services/net/NetServerService.cpp -------------------------------------------------------------------------------- /server/services/net/NetServerService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/server/services/net/NetServerService.h -------------------------------------------------------------------------------- /server/small.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/server/small.ico -------------------------------------------------------------------------------- /server/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/server/targetver.h -------------------------------------------------------------------------------- /server/ui/console/AppConsole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/server/ui/console/AppConsole.cpp -------------------------------------------------------------------------------- /server/ui/console/AppConsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/server/ui/console/AppConsole.h -------------------------------------------------------------------------------- /server/ui/console/ConsoleReporter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/server/ui/console/ConsoleReporter.cpp -------------------------------------------------------------------------------- /server/ui/console/ConsoleReporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/server/ui/console/ConsoleReporter.h -------------------------------------------------------------------------------- /server/ui/console/mediators/SimpleConsoleUiMediator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/server/ui/console/mediators/SimpleConsoleUiMediator.cpp -------------------------------------------------------------------------------- /server/ui/console/mediators/SimpleConsoleUiMediator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/server/ui/console/mediators/SimpleConsoleUiMediator.h -------------------------------------------------------------------------------- /server/ui/mediators/IUiMediator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/server/ui/mediators/IUiMediator.cpp -------------------------------------------------------------------------------- /server/ui/mediators/IUiMediator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/server/ui/mediators/IUiMediator.h -------------------------------------------------------------------------------- /shared/ConcurrentLib/ConcurrentLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/shared/ConcurrentLib/ConcurrentLib.vcxproj -------------------------------------------------------------------------------- /shared/ConcurrentLib/ConcurrentLib.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/shared/ConcurrentLib/ConcurrentLib.vcxproj.filters -------------------------------------------------------------------------------- /shared/ConcurrentLib/core/Mutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/shared/ConcurrentLib/core/Mutex.cpp -------------------------------------------------------------------------------- /shared/ConcurrentLib/core/Mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/shared/ConcurrentLib/core/Mutex.h -------------------------------------------------------------------------------- /shared/ConcurrentLib/core/Thread.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/shared/ConcurrentLib/core/Thread.cpp -------------------------------------------------------------------------------- /shared/ConcurrentLib/core/Thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/shared/ConcurrentLib/core/Thread.h -------------------------------------------------------------------------------- /shared/ConcurrentLib/models/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/shared/ConcurrentLib/models/errors.h -------------------------------------------------------------------------------- /shared/ConcurrentLib/mutex/Win32CritialSectionMutex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/shared/ConcurrentLib/mutex/Win32CritialSectionMutex.cpp -------------------------------------------------------------------------------- /shared/ConcurrentLib/mutex/Win32CritialSectionMutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/shared/ConcurrentLib/mutex/Win32CritialSectionMutex.h -------------------------------------------------------------------------------- /shared/ConcurrentLib/pool/BasicThreadPool.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/shared/ConcurrentLib/pool/BasicThreadPool.cpp -------------------------------------------------------------------------------- /shared/ConcurrentLib/pool/BasicThreadPool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/shared/ConcurrentLib/pool/BasicThreadPool.h -------------------------------------------------------------------------------- /shared/ConcurrentLib/signals/ISignal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/shared/ConcurrentLib/signals/ISignal.cpp -------------------------------------------------------------------------------- /shared/ConcurrentLib/signals/ISignal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/shared/ConcurrentLib/signals/ISignal.h -------------------------------------------------------------------------------- /shared/ConcurrentLib/signals/StdCVSignal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/shared/ConcurrentLib/signals/StdCVSignal.cpp -------------------------------------------------------------------------------- /shared/ConcurrentLib/signals/StdCVSignal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/shared/ConcurrentLib/signals/StdCVSignal.h -------------------------------------------------------------------------------- /shared/ConcurrentLib/signals/Win32CVSignal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/shared/ConcurrentLib/signals/Win32CVSignal.cpp -------------------------------------------------------------------------------- /shared/ConcurrentLib/signals/Win32CVSignal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/shared/ConcurrentLib/signals/Win32CVSignal.h -------------------------------------------------------------------------------- /shared/ConcurrentLib/signals/Win32EventSignal.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/shared/ConcurrentLib/signals/Win32EventSignal.cpp -------------------------------------------------------------------------------- /shared/ConcurrentLib/signals/Win32EventSignal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/shared/ConcurrentLib/signals/Win32EventSignal.h -------------------------------------------------------------------------------- /shared/ConsoleLib/Console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/shared/ConsoleLib/Console.cpp -------------------------------------------------------------------------------- /shared/ConsoleLib/Console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/shared/ConsoleLib/Console.h -------------------------------------------------------------------------------- /shared/ConsoleLib/ConsoleLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/shared/ConsoleLib/ConsoleLib.vcxproj -------------------------------------------------------------------------------- /shared/ConsoleLib/ConsoleLib.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/shared/ConsoleLib/ConsoleLib.vcxproj.filters -------------------------------------------------------------------------------- /shared/IOLib/IOLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/shared/IOLib/IOLib.vcxproj -------------------------------------------------------------------------------- /shared/IOLib/IOLib.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/shared/IOLib/IOLib.vcxproj.filters -------------------------------------------------------------------------------- /shared/IOLib/buffers/Buffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/shared/IOLib/buffers/Buffer.cpp -------------------------------------------------------------------------------- /shared/IOLib/buffers/Buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/shared/IOLib/buffers/Buffer.h -------------------------------------------------------------------------------- /shared/IOLib/buffers/CursorBuffer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/shared/IOLib/buffers/CursorBuffer.cpp -------------------------------------------------------------------------------- /shared/IOLib/buffers/CursorBuffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/shared/IOLib/buffers/CursorBuffer.h -------------------------------------------------------------------------------- /shared/IOLib/services/FileSystemService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/shared/IOLib/services/FileSystemService.cpp -------------------------------------------------------------------------------- /shared/IOLib/services/FileSystemService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/shared/IOLib/services/FileSystemService.h -------------------------------------------------------------------------------- /shared/IOLib/services/StringService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/shared/IOLib/services/StringService.cpp -------------------------------------------------------------------------------- /shared/IOLib/services/StringService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/shared/IOLib/services/StringService.h -------------------------------------------------------------------------------- /shared/MediaLib/DesktopService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/shared/MediaLib/DesktopService.cpp -------------------------------------------------------------------------------- /shared/MediaLib/DesktopService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/shared/MediaLib/DesktopService.h -------------------------------------------------------------------------------- /shared/MediaLib/MediaLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/shared/MediaLib/MediaLib.vcxproj -------------------------------------------------------------------------------- /shared/MediaLib/MediaLib.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/shared/MediaLib/MediaLib.vcxproj.filters -------------------------------------------------------------------------------- /shared/NetLib/NetLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/shared/NetLib/NetLib.vcxproj -------------------------------------------------------------------------------- /shared/NetLib/NetLib.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/shared/NetLib/NetLib.vcxproj.filters -------------------------------------------------------------------------------- /shared/NetLib/models/errors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/shared/NetLib/models/errors.h -------------------------------------------------------------------------------- /shared/NetLib/packets/Packet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/shared/NetLib/packets/Packet.cpp -------------------------------------------------------------------------------- /shared/NetLib/packets/Packet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/shared/NetLib/packets/Packet.h -------------------------------------------------------------------------------- /shared/NetLib/packets/PacketDownload.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/shared/NetLib/packets/PacketDownload.cpp -------------------------------------------------------------------------------- /shared/NetLib/packets/PacketDownload.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/shared/NetLib/packets/PacketDownload.h -------------------------------------------------------------------------------- /shared/NetLib/packets/PacketFileSystem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/shared/NetLib/packets/PacketFileSystem.cpp -------------------------------------------------------------------------------- /shared/NetLib/packets/PacketFileSystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/shared/NetLib/packets/PacketFileSystem.h -------------------------------------------------------------------------------- /shared/NetLib/packets/PacketMediaResponse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/shared/NetLib/packets/PacketMediaResponse.cpp -------------------------------------------------------------------------------- /shared/NetLib/packets/PacketMediaResponse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/shared/NetLib/packets/PacketMediaResponse.h -------------------------------------------------------------------------------- /shared/NetLib/packets/PacketPresentation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/shared/NetLib/packets/PacketPresentation.cpp -------------------------------------------------------------------------------- /shared/NetLib/packets/PacketPresentation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/shared/NetLib/packets/PacketPresentation.h -------------------------------------------------------------------------------- /shared/NetLib/packets/PacketProcess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/shared/NetLib/packets/PacketProcess.cpp -------------------------------------------------------------------------------- /shared/NetLib/packets/PacketProcess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/shared/NetLib/packets/PacketProcess.h -------------------------------------------------------------------------------- /shared/NetLib/packets/PacketShell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/shared/NetLib/packets/PacketShell.cpp -------------------------------------------------------------------------------- /shared/NetLib/packets/PacketShell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/shared/NetLib/packets/PacketShell.h -------------------------------------------------------------------------------- /shared/NetLib/packets/PacketSysInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/shared/NetLib/packets/PacketSysInfo.cpp -------------------------------------------------------------------------------- /shared/NetLib/packets/PacketSysInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/shared/NetLib/packets/PacketSysInfo.h -------------------------------------------------------------------------------- /shared/NetLib/packets/packetdefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/shared/NetLib/packets/packetdefs.h -------------------------------------------------------------------------------- /shared/NetLib/services/BaseNetClientService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/shared/NetLib/services/BaseNetClientService.cpp -------------------------------------------------------------------------------- /shared/NetLib/services/BaseNetClientService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/shared/NetLib/services/BaseNetClientService.h -------------------------------------------------------------------------------- /shared/NetLib/services/BaseNetService.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/shared/NetLib/services/BaseNetService.cpp -------------------------------------------------------------------------------- /shared/NetLib/services/BaseNetService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/melardev/XeytanWin32-RAT/HEAD/shared/NetLib/services/BaseNetService.h --------------------------------------------------------------------------------