├── .gitattributes ├── .gitignore ├── .gitmodules ├── Client ├── Client.vcxproj ├── Client.vcxproj.filters ├── Client.vcxproj.user ├── Common.hpp ├── Cryptography │ ├── AES256.cpp │ ├── AES256.hpp │ ├── Base64.cpp │ ├── Base64.hpp │ ├── Hex.cpp │ ├── Hex.hpp │ ├── PEM.cpp │ ├── PEM.hpp │ ├── RSA.cpp │ └── RSA.hpp ├── Gui │ ├── Fonts │ │ ├── Fonts.hpp │ │ └── SegoeUi.hpp │ ├── Gui.cpp │ └── Gui.hpp ├── HardwareId │ ├── HardwareId.cpp │ ├── HardwareId.hpp │ └── WmiQuery │ │ ├── WmiQuery.cpp │ │ └── WmiQuery.hpp ├── Main.cpp ├── Network │ ├── Network.cpp │ ├── Network.hpp │ ├── SocketHandler.cpp │ └── SocketHandler.hpp └── Utilities │ ├── Utilities.cpp │ └── Utilities.hpp ├── Dependencies └── Shared.hpp ├── Doner.sln ├── LICENSE ├── Pictures ├── login-form.jpg ├── module-form.jpg ├── stream-form.jpg └── ze-doner.jpg ├── README.md └── Server ├── Common.hpp ├── Cryptography ├── AES256.cpp ├── AES256.hpp ├── Base64.cpp ├── Base64.hpp ├── Hex.cpp ├── Hex.hpp ├── PEM.cpp ├── PEM.hpp ├── RSA.cpp └── RSA.hpp ├── Database ├── Database.cpp ├── Database.hpp └── Uri.hpp ├── Main.cpp ├── Modules ├── Modules.cpp └── Modules.hpp ├── Network ├── Network.cpp ├── Network.hpp ├── SocketHandler.cpp └── SocketHandler.hpp ├── Server.vcxproj ├── Server.vcxproj.filters ├── Server.vcxproj.user └── Utilities ├── Utilities.cpp └── Utilities.hpp /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krispybyte/DonerLoader/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krispybyte/DonerLoader/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krispybyte/DonerLoader/HEAD/.gitmodules -------------------------------------------------------------------------------- /Client/Client.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krispybyte/DonerLoader/HEAD/Client/Client.vcxproj -------------------------------------------------------------------------------- /Client/Client.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krispybyte/DonerLoader/HEAD/Client/Client.vcxproj.filters -------------------------------------------------------------------------------- /Client/Client.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krispybyte/DonerLoader/HEAD/Client/Client.vcxproj.user -------------------------------------------------------------------------------- /Client/Common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krispybyte/DonerLoader/HEAD/Client/Common.hpp -------------------------------------------------------------------------------- /Client/Cryptography/AES256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krispybyte/DonerLoader/HEAD/Client/Cryptography/AES256.cpp -------------------------------------------------------------------------------- /Client/Cryptography/AES256.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krispybyte/DonerLoader/HEAD/Client/Cryptography/AES256.hpp -------------------------------------------------------------------------------- /Client/Cryptography/Base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krispybyte/DonerLoader/HEAD/Client/Cryptography/Base64.cpp -------------------------------------------------------------------------------- /Client/Cryptography/Base64.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krispybyte/DonerLoader/HEAD/Client/Cryptography/Base64.hpp -------------------------------------------------------------------------------- /Client/Cryptography/Hex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krispybyte/DonerLoader/HEAD/Client/Cryptography/Hex.cpp -------------------------------------------------------------------------------- /Client/Cryptography/Hex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krispybyte/DonerLoader/HEAD/Client/Cryptography/Hex.hpp -------------------------------------------------------------------------------- /Client/Cryptography/PEM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krispybyte/DonerLoader/HEAD/Client/Cryptography/PEM.cpp -------------------------------------------------------------------------------- /Client/Cryptography/PEM.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krispybyte/DonerLoader/HEAD/Client/Cryptography/PEM.hpp -------------------------------------------------------------------------------- /Client/Cryptography/RSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krispybyte/DonerLoader/HEAD/Client/Cryptography/RSA.cpp -------------------------------------------------------------------------------- /Client/Cryptography/RSA.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krispybyte/DonerLoader/HEAD/Client/Cryptography/RSA.hpp -------------------------------------------------------------------------------- /Client/Gui/Fonts/Fonts.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krispybyte/DonerLoader/HEAD/Client/Gui/Fonts/Fonts.hpp -------------------------------------------------------------------------------- /Client/Gui/Fonts/SegoeUi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krispybyte/DonerLoader/HEAD/Client/Gui/Fonts/SegoeUi.hpp -------------------------------------------------------------------------------- /Client/Gui/Gui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krispybyte/DonerLoader/HEAD/Client/Gui/Gui.cpp -------------------------------------------------------------------------------- /Client/Gui/Gui.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krispybyte/DonerLoader/HEAD/Client/Gui/Gui.hpp -------------------------------------------------------------------------------- /Client/HardwareId/HardwareId.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krispybyte/DonerLoader/HEAD/Client/HardwareId/HardwareId.cpp -------------------------------------------------------------------------------- /Client/HardwareId/HardwareId.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krispybyte/DonerLoader/HEAD/Client/HardwareId/HardwareId.hpp -------------------------------------------------------------------------------- /Client/HardwareId/WmiQuery/WmiQuery.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krispybyte/DonerLoader/HEAD/Client/HardwareId/WmiQuery/WmiQuery.cpp -------------------------------------------------------------------------------- /Client/HardwareId/WmiQuery/WmiQuery.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krispybyte/DonerLoader/HEAD/Client/HardwareId/WmiQuery/WmiQuery.hpp -------------------------------------------------------------------------------- /Client/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krispybyte/DonerLoader/HEAD/Client/Main.cpp -------------------------------------------------------------------------------- /Client/Network/Network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krispybyte/DonerLoader/HEAD/Client/Network/Network.cpp -------------------------------------------------------------------------------- /Client/Network/Network.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krispybyte/DonerLoader/HEAD/Client/Network/Network.hpp -------------------------------------------------------------------------------- /Client/Network/SocketHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krispybyte/DonerLoader/HEAD/Client/Network/SocketHandler.cpp -------------------------------------------------------------------------------- /Client/Network/SocketHandler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krispybyte/DonerLoader/HEAD/Client/Network/SocketHandler.hpp -------------------------------------------------------------------------------- /Client/Utilities/Utilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krispybyte/DonerLoader/HEAD/Client/Utilities/Utilities.cpp -------------------------------------------------------------------------------- /Client/Utilities/Utilities.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krispybyte/DonerLoader/HEAD/Client/Utilities/Utilities.hpp -------------------------------------------------------------------------------- /Dependencies/Shared.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krispybyte/DonerLoader/HEAD/Dependencies/Shared.hpp -------------------------------------------------------------------------------- /Doner.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krispybyte/DonerLoader/HEAD/Doner.sln -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krispybyte/DonerLoader/HEAD/LICENSE -------------------------------------------------------------------------------- /Pictures/login-form.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krispybyte/DonerLoader/HEAD/Pictures/login-form.jpg -------------------------------------------------------------------------------- /Pictures/module-form.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krispybyte/DonerLoader/HEAD/Pictures/module-form.jpg -------------------------------------------------------------------------------- /Pictures/stream-form.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krispybyte/DonerLoader/HEAD/Pictures/stream-form.jpg -------------------------------------------------------------------------------- /Pictures/ze-doner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krispybyte/DonerLoader/HEAD/Pictures/ze-doner.jpg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krispybyte/DonerLoader/HEAD/README.md -------------------------------------------------------------------------------- /Server/Common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krispybyte/DonerLoader/HEAD/Server/Common.hpp -------------------------------------------------------------------------------- /Server/Cryptography/AES256.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krispybyte/DonerLoader/HEAD/Server/Cryptography/AES256.cpp -------------------------------------------------------------------------------- /Server/Cryptography/AES256.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krispybyte/DonerLoader/HEAD/Server/Cryptography/AES256.hpp -------------------------------------------------------------------------------- /Server/Cryptography/Base64.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krispybyte/DonerLoader/HEAD/Server/Cryptography/Base64.cpp -------------------------------------------------------------------------------- /Server/Cryptography/Base64.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krispybyte/DonerLoader/HEAD/Server/Cryptography/Base64.hpp -------------------------------------------------------------------------------- /Server/Cryptography/Hex.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krispybyte/DonerLoader/HEAD/Server/Cryptography/Hex.cpp -------------------------------------------------------------------------------- /Server/Cryptography/Hex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krispybyte/DonerLoader/HEAD/Server/Cryptography/Hex.hpp -------------------------------------------------------------------------------- /Server/Cryptography/PEM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krispybyte/DonerLoader/HEAD/Server/Cryptography/PEM.cpp -------------------------------------------------------------------------------- /Server/Cryptography/PEM.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krispybyte/DonerLoader/HEAD/Server/Cryptography/PEM.hpp -------------------------------------------------------------------------------- /Server/Cryptography/RSA.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krispybyte/DonerLoader/HEAD/Server/Cryptography/RSA.cpp -------------------------------------------------------------------------------- /Server/Cryptography/RSA.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krispybyte/DonerLoader/HEAD/Server/Cryptography/RSA.hpp -------------------------------------------------------------------------------- /Server/Database/Database.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krispybyte/DonerLoader/HEAD/Server/Database/Database.cpp -------------------------------------------------------------------------------- /Server/Database/Database.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krispybyte/DonerLoader/HEAD/Server/Database/Database.hpp -------------------------------------------------------------------------------- /Server/Database/Uri.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krispybyte/DonerLoader/HEAD/Server/Database/Uri.hpp -------------------------------------------------------------------------------- /Server/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krispybyte/DonerLoader/HEAD/Server/Main.cpp -------------------------------------------------------------------------------- /Server/Modules/Modules.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krispybyte/DonerLoader/HEAD/Server/Modules/Modules.cpp -------------------------------------------------------------------------------- /Server/Modules/Modules.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krispybyte/DonerLoader/HEAD/Server/Modules/Modules.hpp -------------------------------------------------------------------------------- /Server/Network/Network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krispybyte/DonerLoader/HEAD/Server/Network/Network.cpp -------------------------------------------------------------------------------- /Server/Network/Network.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krispybyte/DonerLoader/HEAD/Server/Network/Network.hpp -------------------------------------------------------------------------------- /Server/Network/SocketHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krispybyte/DonerLoader/HEAD/Server/Network/SocketHandler.cpp -------------------------------------------------------------------------------- /Server/Network/SocketHandler.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krispybyte/DonerLoader/HEAD/Server/Network/SocketHandler.hpp -------------------------------------------------------------------------------- /Server/Server.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krispybyte/DonerLoader/HEAD/Server/Server.vcxproj -------------------------------------------------------------------------------- /Server/Server.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krispybyte/DonerLoader/HEAD/Server/Server.vcxproj.filters -------------------------------------------------------------------------------- /Server/Server.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krispybyte/DonerLoader/HEAD/Server/Server.vcxproj.user -------------------------------------------------------------------------------- /Server/Utilities/Utilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krispybyte/DonerLoader/HEAD/Server/Utilities/Utilities.cpp -------------------------------------------------------------------------------- /Server/Utilities/Utilities.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/krispybyte/DonerLoader/HEAD/Server/Utilities/Utilities.hpp --------------------------------------------------------------------------------