├── BotServer.py ├── README.md ├── maldev.cpp ├── maldev.exe └── vscode_files ├── c_cpp_properties.json ├── settings.json └── tasks.json /BotServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paranoidninja/Botnet-blogpost/HEAD/BotServer.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paranoidninja/Botnet-blogpost/HEAD/README.md -------------------------------------------------------------------------------- /maldev.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paranoidninja/Botnet-blogpost/HEAD/maldev.cpp -------------------------------------------------------------------------------- /maldev.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paranoidninja/Botnet-blogpost/HEAD/maldev.exe -------------------------------------------------------------------------------- /vscode_files/c_cpp_properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paranoidninja/Botnet-blogpost/HEAD/vscode_files/c_cpp_properties.json -------------------------------------------------------------------------------- /vscode_files/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "C_Cpp.errorSquiggles": "Disabled" 3 | } -------------------------------------------------------------------------------- /vscode_files/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paranoidninja/Botnet-blogpost/HEAD/vscode_files/tasks.json --------------------------------------------------------------------------------