├── .gitignore ├── ActClient ├── ActClient.sln ├── ActClient.vcxproj ├── ActClient.vcxproj.filters ├── ActClient.vcxproj.user ├── client.cpp ├── communication.cpp ├── communication.h ├── internet.cpp ├── internet.h ├── parse.cpp ├── parsing.cpp ├── parsing.h ├── requests.cpp ├── requests.h ├── structs.h ├── utils.cpp ├── utils.h └── x64 │ └── Debug │ ├── ActClient.Build.CppClean.log │ ├── ActClient.exe │ ├── ActClient.exe.recipe │ ├── ActClient.ilk │ ├── ActClient.log │ ├── ActClient.pdb │ ├── ActClient.tlog │ ├── ActClient.lastbuildstate │ ├── CL.command.1.tlog │ ├── CL.read.1.tlog │ ├── CL.write.1.tlog │ ├── Cl.items.tlog │ ├── link.command.1.tlog │ ├── link.read.1.tlog │ └── link.write.1.tlog │ ├── ActClient.vcxproj.FileListAbsolute.txt │ ├── client.obj │ ├── communication.obj │ ├── internet.obj │ ├── parsing.obj │ ├── requests.obj │ ├── utils.obj │ ├── vc143.idb │ └── vc143.pdb ├── KMDFdriver ├── DKOM.cpp ├── DKOM.h ├── Driver.cpp ├── HookingGlobals.h ├── KMDFdriver.inf ├── KMDFdriver.sln ├── KMDFdriver.vcxproj ├── KMDFdriver.vcxproj.filters ├── KMDFdriver.vcxproj.user ├── MinifilterGlobals.h ├── ProcDkomGlobals.h ├── ProcessGlobals.h ├── SSDT.cpp ├── definitions.h ├── helpers.cpp ├── helpers.h ├── hooking.cpp ├── hooking.h ├── irp.cpp ├── irp.h ├── memory.cpp ├── memory.h ├── minifilter.cpp ├── minifilter.h ├── piping.cpp ├── piping.h ├── problematic.cpp ├── problematic.h ├── requests.cpp ├── requests.h └── x64 │ └── Release │ ├── DKOM.obj │ ├── Driver.obj │ ├── KMDFdriver.Build.CppClean.log │ ├── KMDFdriver.inf │ ├── KMDFdriver.log │ ├── KMDFdriver.pdb │ ├── KMDFdriver.sys │ ├── KMDFdriver.sys.recipe │ ├── KMDFdriver.tlog │ ├── CL.command.1.tlog │ ├── CL.read.1.tlog │ ├── CL.write.1.tlog │ ├── Cl.items.tlog │ ├── CopyLocal.read.1u.tlog │ ├── CopyLocal.write.1u.tlog │ ├── KMDFdriver.lastbuildstate │ ├── link.command.1.tlog │ ├── link.read.1.tlog │ ├── link.write.1.tlog │ ├── stampinf.command.1.tlog │ ├── stampinf.read.1.tlog │ ├── stampinf.write.1.tlog │ └── unsuccessfulbuild │ ├── KMDFdriver.vcxproj.CopyComplete │ ├── KMDFdriver.vcxproj.FileListAbsolute.txt │ ├── KMDFdriver │ ├── KMDFdriver.inf │ └── KMDFdriver.sys │ ├── SSDT.obj │ ├── concrt140.dll │ ├── helpers.obj │ ├── hooking.obj │ ├── irp.obj │ ├── memory.obj │ ├── mfc140.dll │ ├── mfc140chs.dll │ ├── mfc140cht.dll │ ├── mfc140deu.dll │ ├── mfc140enu.dll │ ├── mfc140esn.dll │ ├── mfc140fra.dll │ ├── mfc140ita.dll │ ├── mfc140jpn.dll │ ├── mfc140kor.dll │ ├── mfc140rus.dll │ ├── mfc140u.dll │ ├── mfcm140.dll │ ├── mfcm140u.dll │ ├── msvcp140.dll │ ├── msvcp140_1.dll │ ├── msvcp140_2.dll │ ├── msvcp140_atomic_wait.dll │ ├── msvcp140_codecvt_ids.dll │ ├── piping.obj │ ├── problematic.obj │ ├── requests.obj │ ├── vc143.pdb │ ├── vcamp140.dll │ ├── vccorlib140.dll │ ├── vcomp140.dll │ ├── vcruntime140.dll │ ├── vcruntime140_1.dll │ └── vcruntime140_threads.dll ├── MainMedium ├── MainMedium.sln ├── MainMedium.vcxproj ├── MainMedium.vcxproj.filters ├── MainMedium.vcxproj.user ├── MainMedium.zip ├── helpers.cpp ├── helpers.h ├── internet.cpp ├── internet.h ├── medium.cpp ├── medium.h ├── piping.cpp ├── piping.h ├── regularrequests.cpp ├── requests.h ├── rootreqs.cpp ├── rootreqs.h └── x64 │ └── Release │ ├── MainMedium.Build.CppClean.log │ ├── MainMedium.exe │ ├── MainMedium.exe.recipe │ ├── MainMedium.iobj │ ├── MainMedium.ipdb │ ├── MainMedium.log │ ├── MainMedium.pdb │ ├── MainMedium.tlog │ ├── CL.command.1.tlog │ ├── CL.read.1.tlog │ ├── CL.write.1.tlog │ ├── Cl.items.tlog │ ├── MainMedium.lastbuildstate │ ├── link.command.1.tlog │ ├── link.read.1.tlog │ ├── link.write.1.tlog │ └── link.write.2u.tlog │ ├── MainMedium.vcxproj.FileListAbsolute.txt │ ├── helpers.obj │ ├── internet.obj │ ├── medium.obj │ ├── piping.obj │ ├── regularrequests.obj │ ├── rootreqs.obj │ └── vc143.pdb ├── README.md ├── ShayMapper ├── ShayMapper.cpp ├── ShayMapper.sln ├── ShayMapper.vcxproj ├── ShayMapper.vcxproj.filters ├── ShayMapper.vcxproj.user ├── additional_nt.h ├── drivers_data.h ├── helpers.cpp ├── ioctl.cpp ├── parameter_handling.cpp ├── parameter_handling.h ├── persistence.cpp ├── utils.cpp ├── utils.h ├── vulndriver.cpp ├── vulndriver.h └── x64 │ ├── Debug │ ├── ShayMapper.log │ ├── ShayMapper.obj │ ├── ShayMapper.tlog │ │ ├── CL.command.1.tlog │ │ ├── ShayMapper.lastbuildstate │ │ └── unsuccessfulbuild │ ├── parameter_handling.obj │ ├── utils.obj │ ├── vc143.idb │ └── vc143.pdb │ └── Release │ ├── ShayMapper.Build.CppClean.log │ ├── ShayMapper.exe.recipe │ ├── ShayMapper.log │ ├── ShayMapper.tlog │ ├── CL.command.1.tlog │ ├── ShayMapper.lastbuildstate │ └── unsuccessfulbuild │ ├── ShayMapper.vcxproj.FileListAbsolute.txt │ ├── parameter_handling.obj │ ├── utils.obj │ └── vc143.pdb ├── WebScraper ├── WebScraper.cpp ├── WebScraper.sln ├── WebScraper.vcxproj ├── WebScraper.vcxproj.filters ├── WebScraper.vcxproj.user └── x64 │ └── Release │ ├── WebScraper.Build.CppClean.log │ ├── WebScraper.exe │ ├── WebScraper.exe.recipe │ ├── WebScraper.iobj │ ├── WebScraper.ipdb │ ├── WebScraper.log │ ├── WebScraper.obj │ ├── WebScraper.pdb │ ├── WebScraper.tlog │ ├── CL.command.1.tlog │ ├── CL.read.1.tlog │ ├── CL.write.1.tlog │ ├── Cl.items.tlog │ ├── WebScraper.lastbuildstate │ ├── link.command.1.tlog │ ├── link.read.1.tlog │ ├── link.write.1.tlog │ └── link.write.2u.tlog │ ├── WebScraper.vcxproj.FileListAbsolute.txt │ └── vc143.pdb ├── cracking_client.bat ├── devcon.exe ├── disablenest.ps1 ├── download_server.bat ├── enablenest.ps1 ├── hashes.txt ├── injection_server.bat ├── injection_server ├── ff.py ├── fff ├── main.py └── static │ ├── intro1.JPG │ ├── intro10.JPG │ ├── intro2.JPG │ ├── intro3.JPG │ ├── intro4.JPG │ ├── intro5.JPG │ ├── intro6.JPG │ ├── intro7.JPG │ ├── intro8.JPG │ └── intro9.JPG ├── notes.txt ├── poolmon.exe ├── projectbag.docx ├── protection_server.bat ├── rootkit_catalog.txt ├── shell_client.bat └── trypack ├── AttackerFile └── attackerips.txt ├── AutoStart ├── AutoStart.cpp ├── AutoStart.sln ├── AutoStart.vcxproj ├── AutoStart.vcxproj.filters ├── AutoStart.vcxproj.user ├── helpers.cpp ├── helpers.h ├── services.h ├── utils.cpp ├── utils.h └── x64 │ └── Release │ ├── AutoStart.Build.CppClean.log │ ├── AutoStart.exe │ ├── AutoStart.exe.recipe │ ├── AutoStart.iobj │ ├── AutoStart.ipdb │ ├── AutoStart.log │ ├── AutoStart.obj │ ├── AutoStart.pdb │ ├── AutoStart.tlog │ ├── AutoStart.lastbuildstate │ ├── CL.command.1.tlog │ ├── CL.read.1.tlog │ ├── CL.write.1.tlog │ ├── Cl.items.tlog │ ├── link.command.1.tlog │ ├── link.read.1.tlog │ ├── link.write.1.tlog │ └── link.write.2u.tlog │ ├── AutoStart.vcxproj.FileListAbsolute.txt │ ├── helpers.obj │ ├── utils.obj │ └── vc143.pdb ├── FunEngine.cpp ├── FunEngine.exe.manifest ├── FunEngine.sln ├── FunEngine.vcxproj ├── FunEngine.vcxproj.filters ├── FunEngine.vcxproj.user ├── ListAttacker.exe.lnk ├── ListAttacker ├── ListAttacker.cpp ├── ListAttacker.sln ├── ListAttacker.vcxproj ├── ListAttacker.vcxproj.filters ├── ListAttacker.vcxproj.user └── x64 │ └── Release │ ├── ListAttacker.Build.CppClean.log │ ├── ListAttacker.exe │ ├── ListAttacker.exe.lnk │ ├── ListAttacker.exe.recipe │ ├── ListAttacker.iobj │ ├── ListAttacker.ipdb │ ├── ListAttacker.log │ ├── ListAttacker.obj │ ├── ListAttacker.pdb │ ├── ListAttacker.tlog │ ├── CL.command.1.tlog │ ├── CL.read.1.tlog │ ├── CL.write.1.tlog │ ├── Cl.items.tlog │ ├── ListAttacker.lastbuildstate │ ├── link.command.1.tlog │ ├── link.read.1.tlog │ ├── link.write.1.tlog │ └── link.write.2u.tlog │ ├── ListAttacker.vcxproj.FileListAbsolute.txt │ └── vc143.pdb ├── configurations.cpp ├── configurations.h ├── elevate.bat ├── mt.exe ├── networking.cpp ├── networking.h ├── services.h ├── servicess.h ├── try.zip ├── trypack.zip ├── utils.cpp ├── utils.h └── x64 └── Release ├── FunEngine.Build.CppClean.log ├── FunEngine.exe ├── FunEngine.exe.recipe ├── FunEngine.iobj ├── FunEngine.ipdb ├── FunEngine.log ├── FunEngine.obj ├── FunEngine.pdb ├── FunEngine.tlog ├── CL.command.1.tlog ├── CL.read.1.tlog ├── CL.write.1.tlog ├── Cl.items.tlog ├── FunEngine.lastbuildstate ├── link.command.1.tlog ├── link.read.1.tlog ├── link.write.1.tlog └── link.write.2u.tlog ├── FunEngine.vcxproj.FileListAbsolute.txt ├── configurations.obj ├── networking.obj ├── utils.obj └── vc143.pdb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/.gitignore -------------------------------------------------------------------------------- /ActClient/ActClient.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/ActClient/ActClient.sln -------------------------------------------------------------------------------- /ActClient/ActClient.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/ActClient/ActClient.vcxproj -------------------------------------------------------------------------------- /ActClient/ActClient.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/ActClient/ActClient.vcxproj.filters -------------------------------------------------------------------------------- /ActClient/ActClient.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/ActClient/ActClient.vcxproj.user -------------------------------------------------------------------------------- /ActClient/client.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/ActClient/client.cpp -------------------------------------------------------------------------------- /ActClient/communication.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/ActClient/communication.cpp -------------------------------------------------------------------------------- /ActClient/communication.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/ActClient/communication.h -------------------------------------------------------------------------------- /ActClient/internet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/ActClient/internet.cpp -------------------------------------------------------------------------------- /ActClient/internet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/ActClient/internet.h -------------------------------------------------------------------------------- /ActClient/parse.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/ActClient/parse.cpp -------------------------------------------------------------------------------- /ActClient/parsing.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/ActClient/parsing.cpp -------------------------------------------------------------------------------- /ActClient/parsing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/ActClient/parsing.h -------------------------------------------------------------------------------- /ActClient/requests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/ActClient/requests.cpp -------------------------------------------------------------------------------- /ActClient/requests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/ActClient/requests.h -------------------------------------------------------------------------------- /ActClient/structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/ActClient/structs.h -------------------------------------------------------------------------------- /ActClient/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/ActClient/utils.cpp -------------------------------------------------------------------------------- /ActClient/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/ActClient/utils.h -------------------------------------------------------------------------------- /ActClient/x64/Debug/ActClient.Build.CppClean.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/ActClient/x64/Debug/ActClient.Build.CppClean.log -------------------------------------------------------------------------------- /ActClient/x64/Debug/ActClient.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/ActClient/x64/Debug/ActClient.exe -------------------------------------------------------------------------------- /ActClient/x64/Debug/ActClient.exe.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/ActClient/x64/Debug/ActClient.exe.recipe -------------------------------------------------------------------------------- /ActClient/x64/Debug/ActClient.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/ActClient/x64/Debug/ActClient.ilk -------------------------------------------------------------------------------- /ActClient/x64/Debug/ActClient.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/ActClient/x64/Debug/ActClient.log -------------------------------------------------------------------------------- /ActClient/x64/Debug/ActClient.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/ActClient/x64/Debug/ActClient.pdb -------------------------------------------------------------------------------- /ActClient/x64/Debug/ActClient.tlog/ActClient.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/ActClient/x64/Debug/ActClient.tlog/ActClient.lastbuildstate -------------------------------------------------------------------------------- /ActClient/x64/Debug/ActClient.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/ActClient/x64/Debug/ActClient.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /ActClient/x64/Debug/ActClient.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/ActClient/x64/Debug/ActClient.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /ActClient/x64/Debug/ActClient.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/ActClient/x64/Debug/ActClient.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /ActClient/x64/Debug/ActClient.tlog/Cl.items.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/ActClient/x64/Debug/ActClient.tlog/Cl.items.tlog -------------------------------------------------------------------------------- /ActClient/x64/Debug/ActClient.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/ActClient/x64/Debug/ActClient.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /ActClient/x64/Debug/ActClient.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/ActClient/x64/Debug/ActClient.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /ActClient/x64/Debug/ActClient.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/ActClient/x64/Debug/ActClient.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /ActClient/x64/Debug/ActClient.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/ActClient/x64/Debug/ActClient.vcxproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /ActClient/x64/Debug/client.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/ActClient/x64/Debug/client.obj -------------------------------------------------------------------------------- /ActClient/x64/Debug/communication.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/ActClient/x64/Debug/communication.obj -------------------------------------------------------------------------------- /ActClient/x64/Debug/internet.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/ActClient/x64/Debug/internet.obj -------------------------------------------------------------------------------- /ActClient/x64/Debug/parsing.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/ActClient/x64/Debug/parsing.obj -------------------------------------------------------------------------------- /ActClient/x64/Debug/requests.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/ActClient/x64/Debug/requests.obj -------------------------------------------------------------------------------- /ActClient/x64/Debug/utils.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/ActClient/x64/Debug/utils.obj -------------------------------------------------------------------------------- /ActClient/x64/Debug/vc143.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/ActClient/x64/Debug/vc143.idb -------------------------------------------------------------------------------- /ActClient/x64/Debug/vc143.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/ActClient/x64/Debug/vc143.pdb -------------------------------------------------------------------------------- /KMDFdriver/DKOM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/DKOM.cpp -------------------------------------------------------------------------------- /KMDFdriver/DKOM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/DKOM.h -------------------------------------------------------------------------------- /KMDFdriver/Driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/Driver.cpp -------------------------------------------------------------------------------- /KMDFdriver/HookingGlobals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/HookingGlobals.h -------------------------------------------------------------------------------- /KMDFdriver/KMDFdriver.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/KMDFdriver.inf -------------------------------------------------------------------------------- /KMDFdriver/KMDFdriver.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/KMDFdriver.sln -------------------------------------------------------------------------------- /KMDFdriver/KMDFdriver.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/KMDFdriver.vcxproj -------------------------------------------------------------------------------- /KMDFdriver/KMDFdriver.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/KMDFdriver.vcxproj.filters -------------------------------------------------------------------------------- /KMDFdriver/KMDFdriver.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/KMDFdriver.vcxproj.user -------------------------------------------------------------------------------- /KMDFdriver/MinifilterGlobals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/MinifilterGlobals.h -------------------------------------------------------------------------------- /KMDFdriver/ProcDkomGlobals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/ProcDkomGlobals.h -------------------------------------------------------------------------------- /KMDFdriver/ProcessGlobals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/ProcessGlobals.h -------------------------------------------------------------------------------- /KMDFdriver/SSDT.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/SSDT.cpp -------------------------------------------------------------------------------- /KMDFdriver/definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/definitions.h -------------------------------------------------------------------------------- /KMDFdriver/helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/helpers.cpp -------------------------------------------------------------------------------- /KMDFdriver/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/helpers.h -------------------------------------------------------------------------------- /KMDFdriver/hooking.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/hooking.cpp -------------------------------------------------------------------------------- /KMDFdriver/hooking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/hooking.h -------------------------------------------------------------------------------- /KMDFdriver/irp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/irp.cpp -------------------------------------------------------------------------------- /KMDFdriver/irp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/irp.h -------------------------------------------------------------------------------- /KMDFdriver/memory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/memory.cpp -------------------------------------------------------------------------------- /KMDFdriver/memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/memory.h -------------------------------------------------------------------------------- /KMDFdriver/minifilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/minifilter.cpp -------------------------------------------------------------------------------- /KMDFdriver/minifilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/minifilter.h -------------------------------------------------------------------------------- /KMDFdriver/piping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/piping.cpp -------------------------------------------------------------------------------- /KMDFdriver/piping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/piping.h -------------------------------------------------------------------------------- /KMDFdriver/problematic.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/problematic.cpp -------------------------------------------------------------------------------- /KMDFdriver/problematic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/problematic.h -------------------------------------------------------------------------------- /KMDFdriver/requests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/requests.cpp -------------------------------------------------------------------------------- /KMDFdriver/requests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/requests.h -------------------------------------------------------------------------------- /KMDFdriver/x64/Release/DKOM.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/x64/Release/DKOM.obj -------------------------------------------------------------------------------- /KMDFdriver/x64/Release/Driver.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/x64/Release/Driver.obj -------------------------------------------------------------------------------- /KMDFdriver/x64/Release/KMDFdriver.Build.CppClean.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/x64/Release/KMDFdriver.Build.CppClean.log -------------------------------------------------------------------------------- /KMDFdriver/x64/Release/KMDFdriver.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/x64/Release/KMDFdriver.inf -------------------------------------------------------------------------------- /KMDFdriver/x64/Release/KMDFdriver.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/x64/Release/KMDFdriver.log -------------------------------------------------------------------------------- /KMDFdriver/x64/Release/KMDFdriver.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/x64/Release/KMDFdriver.pdb -------------------------------------------------------------------------------- /KMDFdriver/x64/Release/KMDFdriver.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/x64/Release/KMDFdriver.sys -------------------------------------------------------------------------------- /KMDFdriver/x64/Release/KMDFdriver.sys.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/x64/Release/KMDFdriver.sys.recipe -------------------------------------------------------------------------------- /KMDFdriver/x64/Release/KMDFdriver.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/x64/Release/KMDFdriver.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /KMDFdriver/x64/Release/KMDFdriver.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/x64/Release/KMDFdriver.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /KMDFdriver/x64/Release/KMDFdriver.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/x64/Release/KMDFdriver.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /KMDFdriver/x64/Release/KMDFdriver.tlog/Cl.items.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/x64/Release/KMDFdriver.tlog/Cl.items.tlog -------------------------------------------------------------------------------- /KMDFdriver/x64/Release/KMDFdriver.tlog/CopyLocal.read.1u.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/x64/Release/KMDFdriver.tlog/CopyLocal.read.1u.tlog -------------------------------------------------------------------------------- /KMDFdriver/x64/Release/KMDFdriver.tlog/CopyLocal.write.1u.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/x64/Release/KMDFdriver.tlog/CopyLocal.write.1u.tlog -------------------------------------------------------------------------------- /KMDFdriver/x64/Release/KMDFdriver.tlog/KMDFdriver.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/x64/Release/KMDFdriver.tlog/KMDFdriver.lastbuildstate -------------------------------------------------------------------------------- /KMDFdriver/x64/Release/KMDFdriver.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/x64/Release/KMDFdriver.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /KMDFdriver/x64/Release/KMDFdriver.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/x64/Release/KMDFdriver.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /KMDFdriver/x64/Release/KMDFdriver.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/x64/Release/KMDFdriver.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /KMDFdriver/x64/Release/KMDFdriver.tlog/stampinf.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/x64/Release/KMDFdriver.tlog/stampinf.command.1.tlog -------------------------------------------------------------------------------- /KMDFdriver/x64/Release/KMDFdriver.tlog/stampinf.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/x64/Release/KMDFdriver.tlog/stampinf.read.1.tlog -------------------------------------------------------------------------------- /KMDFdriver/x64/Release/KMDFdriver.tlog/stampinf.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/x64/Release/KMDFdriver.tlog/stampinf.write.1.tlog -------------------------------------------------------------------------------- /KMDFdriver/x64/Release/KMDFdriver.tlog/unsuccessfulbuild: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /KMDFdriver/x64/Release/KMDFdriver.vcxproj.CopyComplete: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /KMDFdriver/x64/Release/KMDFdriver.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/x64/Release/KMDFdriver.vcxproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /KMDFdriver/x64/Release/KMDFdriver/KMDFdriver.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/x64/Release/KMDFdriver/KMDFdriver.inf -------------------------------------------------------------------------------- /KMDFdriver/x64/Release/KMDFdriver/KMDFdriver.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/x64/Release/KMDFdriver/KMDFdriver.sys -------------------------------------------------------------------------------- /KMDFdriver/x64/Release/SSDT.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/x64/Release/SSDT.obj -------------------------------------------------------------------------------- /KMDFdriver/x64/Release/concrt140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/x64/Release/concrt140.dll -------------------------------------------------------------------------------- /KMDFdriver/x64/Release/helpers.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/x64/Release/helpers.obj -------------------------------------------------------------------------------- /KMDFdriver/x64/Release/hooking.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/x64/Release/hooking.obj -------------------------------------------------------------------------------- /KMDFdriver/x64/Release/irp.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/x64/Release/irp.obj -------------------------------------------------------------------------------- /KMDFdriver/x64/Release/memory.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/x64/Release/memory.obj -------------------------------------------------------------------------------- /KMDFdriver/x64/Release/mfc140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/x64/Release/mfc140.dll -------------------------------------------------------------------------------- /KMDFdriver/x64/Release/mfc140chs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/x64/Release/mfc140chs.dll -------------------------------------------------------------------------------- /KMDFdriver/x64/Release/mfc140cht.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/x64/Release/mfc140cht.dll -------------------------------------------------------------------------------- /KMDFdriver/x64/Release/mfc140deu.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/x64/Release/mfc140deu.dll -------------------------------------------------------------------------------- /KMDFdriver/x64/Release/mfc140enu.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/x64/Release/mfc140enu.dll -------------------------------------------------------------------------------- /KMDFdriver/x64/Release/mfc140esn.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/x64/Release/mfc140esn.dll -------------------------------------------------------------------------------- /KMDFdriver/x64/Release/mfc140fra.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/x64/Release/mfc140fra.dll -------------------------------------------------------------------------------- /KMDFdriver/x64/Release/mfc140ita.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/x64/Release/mfc140ita.dll -------------------------------------------------------------------------------- /KMDFdriver/x64/Release/mfc140jpn.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/x64/Release/mfc140jpn.dll -------------------------------------------------------------------------------- /KMDFdriver/x64/Release/mfc140kor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/x64/Release/mfc140kor.dll -------------------------------------------------------------------------------- /KMDFdriver/x64/Release/mfc140rus.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/x64/Release/mfc140rus.dll -------------------------------------------------------------------------------- /KMDFdriver/x64/Release/mfc140u.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/x64/Release/mfc140u.dll -------------------------------------------------------------------------------- /KMDFdriver/x64/Release/mfcm140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/x64/Release/mfcm140.dll -------------------------------------------------------------------------------- /KMDFdriver/x64/Release/mfcm140u.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/x64/Release/mfcm140u.dll -------------------------------------------------------------------------------- /KMDFdriver/x64/Release/msvcp140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/x64/Release/msvcp140.dll -------------------------------------------------------------------------------- /KMDFdriver/x64/Release/msvcp140_1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/x64/Release/msvcp140_1.dll -------------------------------------------------------------------------------- /KMDFdriver/x64/Release/msvcp140_2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/x64/Release/msvcp140_2.dll -------------------------------------------------------------------------------- /KMDFdriver/x64/Release/msvcp140_atomic_wait.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/x64/Release/msvcp140_atomic_wait.dll -------------------------------------------------------------------------------- /KMDFdriver/x64/Release/msvcp140_codecvt_ids.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/x64/Release/msvcp140_codecvt_ids.dll -------------------------------------------------------------------------------- /KMDFdriver/x64/Release/piping.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/x64/Release/piping.obj -------------------------------------------------------------------------------- /KMDFdriver/x64/Release/problematic.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/x64/Release/problematic.obj -------------------------------------------------------------------------------- /KMDFdriver/x64/Release/requests.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/x64/Release/requests.obj -------------------------------------------------------------------------------- /KMDFdriver/x64/Release/vc143.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/x64/Release/vc143.pdb -------------------------------------------------------------------------------- /KMDFdriver/x64/Release/vcamp140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/x64/Release/vcamp140.dll -------------------------------------------------------------------------------- /KMDFdriver/x64/Release/vccorlib140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/x64/Release/vccorlib140.dll -------------------------------------------------------------------------------- /KMDFdriver/x64/Release/vcomp140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/x64/Release/vcomp140.dll -------------------------------------------------------------------------------- /KMDFdriver/x64/Release/vcruntime140.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/x64/Release/vcruntime140.dll -------------------------------------------------------------------------------- /KMDFdriver/x64/Release/vcruntime140_1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/x64/Release/vcruntime140_1.dll -------------------------------------------------------------------------------- /KMDFdriver/x64/Release/vcruntime140_threads.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/KMDFdriver/x64/Release/vcruntime140_threads.dll -------------------------------------------------------------------------------- /MainMedium/MainMedium.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/MainMedium/MainMedium.sln -------------------------------------------------------------------------------- /MainMedium/MainMedium.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/MainMedium/MainMedium.vcxproj -------------------------------------------------------------------------------- /MainMedium/MainMedium.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/MainMedium/MainMedium.vcxproj.filters -------------------------------------------------------------------------------- /MainMedium/MainMedium.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/MainMedium/MainMedium.vcxproj.user -------------------------------------------------------------------------------- /MainMedium/MainMedium.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/MainMedium/MainMedium.zip -------------------------------------------------------------------------------- /MainMedium/helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/MainMedium/helpers.cpp -------------------------------------------------------------------------------- /MainMedium/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/MainMedium/helpers.h -------------------------------------------------------------------------------- /MainMedium/internet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/MainMedium/internet.cpp -------------------------------------------------------------------------------- /MainMedium/internet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/MainMedium/internet.h -------------------------------------------------------------------------------- /MainMedium/medium.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/MainMedium/medium.cpp -------------------------------------------------------------------------------- /MainMedium/medium.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/MainMedium/medium.h -------------------------------------------------------------------------------- /MainMedium/piping.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/MainMedium/piping.cpp -------------------------------------------------------------------------------- /MainMedium/piping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/MainMedium/piping.h -------------------------------------------------------------------------------- /MainMedium/regularrequests.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/MainMedium/regularrequests.cpp -------------------------------------------------------------------------------- /MainMedium/requests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/MainMedium/requests.h -------------------------------------------------------------------------------- /MainMedium/rootreqs.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/MainMedium/rootreqs.cpp -------------------------------------------------------------------------------- /MainMedium/rootreqs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/MainMedium/rootreqs.h -------------------------------------------------------------------------------- /MainMedium/x64/Release/MainMedium.Build.CppClean.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/MainMedium/x64/Release/MainMedium.Build.CppClean.log -------------------------------------------------------------------------------- /MainMedium/x64/Release/MainMedium.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/MainMedium/x64/Release/MainMedium.exe -------------------------------------------------------------------------------- /MainMedium/x64/Release/MainMedium.exe.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/MainMedium/x64/Release/MainMedium.exe.recipe -------------------------------------------------------------------------------- /MainMedium/x64/Release/MainMedium.iobj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/MainMedium/x64/Release/MainMedium.iobj -------------------------------------------------------------------------------- /MainMedium/x64/Release/MainMedium.ipdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/MainMedium/x64/Release/MainMedium.ipdb -------------------------------------------------------------------------------- /MainMedium/x64/Release/MainMedium.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/MainMedium/x64/Release/MainMedium.log -------------------------------------------------------------------------------- /MainMedium/x64/Release/MainMedium.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/MainMedium/x64/Release/MainMedium.pdb -------------------------------------------------------------------------------- /MainMedium/x64/Release/MainMedium.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/MainMedium/x64/Release/MainMedium.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /MainMedium/x64/Release/MainMedium.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/MainMedium/x64/Release/MainMedium.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /MainMedium/x64/Release/MainMedium.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/MainMedium/x64/Release/MainMedium.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /MainMedium/x64/Release/MainMedium.tlog/Cl.items.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/MainMedium/x64/Release/MainMedium.tlog/Cl.items.tlog -------------------------------------------------------------------------------- /MainMedium/x64/Release/MainMedium.tlog/MainMedium.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/MainMedium/x64/Release/MainMedium.tlog/MainMedium.lastbuildstate -------------------------------------------------------------------------------- /MainMedium/x64/Release/MainMedium.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/MainMedium/x64/Release/MainMedium.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /MainMedium/x64/Release/MainMedium.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/MainMedium/x64/Release/MainMedium.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /MainMedium/x64/Release/MainMedium.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/MainMedium/x64/Release/MainMedium.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /MainMedium/x64/Release/MainMedium.tlog/link.write.2u.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/MainMedium/x64/Release/MainMedium.tlog/link.write.2u.tlog -------------------------------------------------------------------------------- /MainMedium/x64/Release/MainMedium.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/MainMedium/x64/Release/MainMedium.vcxproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /MainMedium/x64/Release/helpers.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/MainMedium/x64/Release/helpers.obj -------------------------------------------------------------------------------- /MainMedium/x64/Release/internet.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/MainMedium/x64/Release/internet.obj -------------------------------------------------------------------------------- /MainMedium/x64/Release/medium.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/MainMedium/x64/Release/medium.obj -------------------------------------------------------------------------------- /MainMedium/x64/Release/piping.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/MainMedium/x64/Release/piping.obj -------------------------------------------------------------------------------- /MainMedium/x64/Release/regularrequests.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/MainMedium/x64/Release/regularrequests.obj -------------------------------------------------------------------------------- /MainMedium/x64/Release/rootreqs.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/MainMedium/x64/Release/rootreqs.obj -------------------------------------------------------------------------------- /MainMedium/x64/Release/vc143.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/MainMedium/x64/Release/vc143.pdb -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/README.md -------------------------------------------------------------------------------- /ShayMapper/ShayMapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/ShayMapper/ShayMapper.cpp -------------------------------------------------------------------------------- /ShayMapper/ShayMapper.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/ShayMapper/ShayMapper.sln -------------------------------------------------------------------------------- /ShayMapper/ShayMapper.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/ShayMapper/ShayMapper.vcxproj -------------------------------------------------------------------------------- /ShayMapper/ShayMapper.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/ShayMapper/ShayMapper.vcxproj.filters -------------------------------------------------------------------------------- /ShayMapper/ShayMapper.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/ShayMapper/ShayMapper.vcxproj.user -------------------------------------------------------------------------------- /ShayMapper/additional_nt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/ShayMapper/additional_nt.h -------------------------------------------------------------------------------- /ShayMapper/drivers_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/ShayMapper/drivers_data.h -------------------------------------------------------------------------------- /ShayMapper/helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/ShayMapper/helpers.cpp -------------------------------------------------------------------------------- /ShayMapper/ioctl.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/ShayMapper/ioctl.cpp -------------------------------------------------------------------------------- /ShayMapper/parameter_handling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/ShayMapper/parameter_handling.cpp -------------------------------------------------------------------------------- /ShayMapper/parameter_handling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/ShayMapper/parameter_handling.h -------------------------------------------------------------------------------- /ShayMapper/persistence.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/ShayMapper/persistence.cpp -------------------------------------------------------------------------------- /ShayMapper/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/ShayMapper/utils.cpp -------------------------------------------------------------------------------- /ShayMapper/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/ShayMapper/utils.h -------------------------------------------------------------------------------- /ShayMapper/vulndriver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/ShayMapper/vulndriver.cpp -------------------------------------------------------------------------------- /ShayMapper/vulndriver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/ShayMapper/vulndriver.h -------------------------------------------------------------------------------- /ShayMapper/x64/Debug/ShayMapper.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/ShayMapper/x64/Debug/ShayMapper.log -------------------------------------------------------------------------------- /ShayMapper/x64/Debug/ShayMapper.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/ShayMapper/x64/Debug/ShayMapper.obj -------------------------------------------------------------------------------- /ShayMapper/x64/Debug/ShayMapper.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/ShayMapper/x64/Debug/ShayMapper.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /ShayMapper/x64/Debug/ShayMapper.tlog/ShayMapper.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/ShayMapper/x64/Debug/ShayMapper.tlog/ShayMapper.lastbuildstate -------------------------------------------------------------------------------- /ShayMapper/x64/Debug/ShayMapper.tlog/unsuccessfulbuild: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ShayMapper/x64/Debug/parameter_handling.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/ShayMapper/x64/Debug/parameter_handling.obj -------------------------------------------------------------------------------- /ShayMapper/x64/Debug/utils.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/ShayMapper/x64/Debug/utils.obj -------------------------------------------------------------------------------- /ShayMapper/x64/Debug/vc143.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/ShayMapper/x64/Debug/vc143.idb -------------------------------------------------------------------------------- /ShayMapper/x64/Debug/vc143.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/ShayMapper/x64/Debug/vc143.pdb -------------------------------------------------------------------------------- /ShayMapper/x64/Release/ShayMapper.Build.CppClean.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/ShayMapper/x64/Release/ShayMapper.Build.CppClean.log -------------------------------------------------------------------------------- /ShayMapper/x64/Release/ShayMapper.exe.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/ShayMapper/x64/Release/ShayMapper.exe.recipe -------------------------------------------------------------------------------- /ShayMapper/x64/Release/ShayMapper.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/ShayMapper/x64/Release/ShayMapper.log -------------------------------------------------------------------------------- /ShayMapper/x64/Release/ShayMapper.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/ShayMapper/x64/Release/ShayMapper.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /ShayMapper/x64/Release/ShayMapper.tlog/ShayMapper.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/ShayMapper/x64/Release/ShayMapper.tlog/ShayMapper.lastbuildstate -------------------------------------------------------------------------------- /ShayMapper/x64/Release/ShayMapper.tlog/unsuccessfulbuild: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ShayMapper/x64/Release/ShayMapper.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ShayMapper/x64/Release/parameter_handling.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/ShayMapper/x64/Release/parameter_handling.obj -------------------------------------------------------------------------------- /ShayMapper/x64/Release/utils.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/ShayMapper/x64/Release/utils.obj -------------------------------------------------------------------------------- /ShayMapper/x64/Release/vc143.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/ShayMapper/x64/Release/vc143.pdb -------------------------------------------------------------------------------- /WebScraper/WebScraper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/WebScraper/WebScraper.cpp -------------------------------------------------------------------------------- /WebScraper/WebScraper.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/WebScraper/WebScraper.sln -------------------------------------------------------------------------------- /WebScraper/WebScraper.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/WebScraper/WebScraper.vcxproj -------------------------------------------------------------------------------- /WebScraper/WebScraper.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/WebScraper/WebScraper.vcxproj.filters -------------------------------------------------------------------------------- /WebScraper/WebScraper.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/WebScraper/WebScraper.vcxproj.user -------------------------------------------------------------------------------- /WebScraper/x64/Release/WebScraper.Build.CppClean.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/WebScraper/x64/Release/WebScraper.Build.CppClean.log -------------------------------------------------------------------------------- /WebScraper/x64/Release/WebScraper.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/WebScraper/x64/Release/WebScraper.exe -------------------------------------------------------------------------------- /WebScraper/x64/Release/WebScraper.exe.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/WebScraper/x64/Release/WebScraper.exe.recipe -------------------------------------------------------------------------------- /WebScraper/x64/Release/WebScraper.iobj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/WebScraper/x64/Release/WebScraper.iobj -------------------------------------------------------------------------------- /WebScraper/x64/Release/WebScraper.ipdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/WebScraper/x64/Release/WebScraper.ipdb -------------------------------------------------------------------------------- /WebScraper/x64/Release/WebScraper.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/WebScraper/x64/Release/WebScraper.log -------------------------------------------------------------------------------- /WebScraper/x64/Release/WebScraper.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/WebScraper/x64/Release/WebScraper.obj -------------------------------------------------------------------------------- /WebScraper/x64/Release/WebScraper.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/WebScraper/x64/Release/WebScraper.pdb -------------------------------------------------------------------------------- /WebScraper/x64/Release/WebScraper.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/WebScraper/x64/Release/WebScraper.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /WebScraper/x64/Release/WebScraper.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/WebScraper/x64/Release/WebScraper.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /WebScraper/x64/Release/WebScraper.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/WebScraper/x64/Release/WebScraper.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /WebScraper/x64/Release/WebScraper.tlog/Cl.items.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/WebScraper/x64/Release/WebScraper.tlog/Cl.items.tlog -------------------------------------------------------------------------------- /WebScraper/x64/Release/WebScraper.tlog/WebScraper.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/WebScraper/x64/Release/WebScraper.tlog/WebScraper.lastbuildstate -------------------------------------------------------------------------------- /WebScraper/x64/Release/WebScraper.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/WebScraper/x64/Release/WebScraper.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /WebScraper/x64/Release/WebScraper.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/WebScraper/x64/Release/WebScraper.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /WebScraper/x64/Release/WebScraper.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/WebScraper/x64/Release/WebScraper.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /WebScraper/x64/Release/WebScraper.tlog/link.write.2u.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/WebScraper/x64/Release/WebScraper.tlog/link.write.2u.tlog -------------------------------------------------------------------------------- /WebScraper/x64/Release/WebScraper.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/WebScraper/x64/Release/WebScraper.vcxproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /WebScraper/x64/Release/vc143.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/WebScraper/x64/Release/vc143.pdb -------------------------------------------------------------------------------- /cracking_client.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/cracking_client.bat -------------------------------------------------------------------------------- /devcon.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/devcon.exe -------------------------------------------------------------------------------- /disablenest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/disablenest.ps1 -------------------------------------------------------------------------------- /download_server.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/download_server.bat -------------------------------------------------------------------------------- /enablenest.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/enablenest.ps1 -------------------------------------------------------------------------------- /hashes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/hashes.txt -------------------------------------------------------------------------------- /injection_server.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/injection_server.bat -------------------------------------------------------------------------------- /injection_server/ff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/injection_server/ff.py -------------------------------------------------------------------------------- /injection_server/fff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/injection_server/fff -------------------------------------------------------------------------------- /injection_server/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/injection_server/main.py -------------------------------------------------------------------------------- /injection_server/static/intro1.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/injection_server/static/intro1.JPG -------------------------------------------------------------------------------- /injection_server/static/intro10.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/injection_server/static/intro10.JPG -------------------------------------------------------------------------------- /injection_server/static/intro2.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/injection_server/static/intro2.JPG -------------------------------------------------------------------------------- /injection_server/static/intro3.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/injection_server/static/intro3.JPG -------------------------------------------------------------------------------- /injection_server/static/intro4.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/injection_server/static/intro4.JPG -------------------------------------------------------------------------------- /injection_server/static/intro5.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/injection_server/static/intro5.JPG -------------------------------------------------------------------------------- /injection_server/static/intro6.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/injection_server/static/intro6.JPG -------------------------------------------------------------------------------- /injection_server/static/intro7.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/injection_server/static/intro7.JPG -------------------------------------------------------------------------------- /injection_server/static/intro8.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/injection_server/static/intro8.JPG -------------------------------------------------------------------------------- /injection_server/static/intro9.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/injection_server/static/intro9.JPG -------------------------------------------------------------------------------- /notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/notes.txt -------------------------------------------------------------------------------- /poolmon.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/poolmon.exe -------------------------------------------------------------------------------- /projectbag.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/projectbag.docx -------------------------------------------------------------------------------- /protection_server.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/protection_server.bat -------------------------------------------------------------------------------- /rootkit_catalog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/rootkit_catalog.txt -------------------------------------------------------------------------------- /shell_client.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/shell_client.bat -------------------------------------------------------------------------------- /trypack/AttackerFile/attackerips.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/AttackerFile/attackerips.txt -------------------------------------------------------------------------------- /trypack/AutoStart/AutoStart.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/AutoStart/AutoStart.cpp -------------------------------------------------------------------------------- /trypack/AutoStart/AutoStart.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/AutoStart/AutoStart.sln -------------------------------------------------------------------------------- /trypack/AutoStart/AutoStart.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/AutoStart/AutoStart.vcxproj -------------------------------------------------------------------------------- /trypack/AutoStart/AutoStart.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/AutoStart/AutoStart.vcxproj.filters -------------------------------------------------------------------------------- /trypack/AutoStart/AutoStart.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/AutoStart/AutoStart.vcxproj.user -------------------------------------------------------------------------------- /trypack/AutoStart/helpers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/AutoStart/helpers.cpp -------------------------------------------------------------------------------- /trypack/AutoStart/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/AutoStart/helpers.h -------------------------------------------------------------------------------- /trypack/AutoStart/services.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/AutoStart/services.h -------------------------------------------------------------------------------- /trypack/AutoStart/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/AutoStart/utils.cpp -------------------------------------------------------------------------------- /trypack/AutoStart/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/AutoStart/utils.h -------------------------------------------------------------------------------- /trypack/AutoStart/x64/Release/AutoStart.Build.CppClean.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/AutoStart/x64/Release/AutoStart.Build.CppClean.log -------------------------------------------------------------------------------- /trypack/AutoStart/x64/Release/AutoStart.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/AutoStart/x64/Release/AutoStart.exe -------------------------------------------------------------------------------- /trypack/AutoStart/x64/Release/AutoStart.exe.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/AutoStart/x64/Release/AutoStart.exe.recipe -------------------------------------------------------------------------------- /trypack/AutoStart/x64/Release/AutoStart.iobj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/AutoStart/x64/Release/AutoStart.iobj -------------------------------------------------------------------------------- /trypack/AutoStart/x64/Release/AutoStart.ipdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/AutoStart/x64/Release/AutoStart.ipdb -------------------------------------------------------------------------------- /trypack/AutoStart/x64/Release/AutoStart.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/AutoStart/x64/Release/AutoStart.log -------------------------------------------------------------------------------- /trypack/AutoStart/x64/Release/AutoStart.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/AutoStart/x64/Release/AutoStart.obj -------------------------------------------------------------------------------- /trypack/AutoStart/x64/Release/AutoStart.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/AutoStart/x64/Release/AutoStart.pdb -------------------------------------------------------------------------------- /trypack/AutoStart/x64/Release/AutoStart.tlog/AutoStart.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/AutoStart/x64/Release/AutoStart.tlog/AutoStart.lastbuildstate -------------------------------------------------------------------------------- /trypack/AutoStart/x64/Release/AutoStart.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/AutoStart/x64/Release/AutoStart.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /trypack/AutoStart/x64/Release/AutoStart.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/AutoStart/x64/Release/AutoStart.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /trypack/AutoStart/x64/Release/AutoStart.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/AutoStart/x64/Release/AutoStart.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /trypack/AutoStart/x64/Release/AutoStart.tlog/Cl.items.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/AutoStart/x64/Release/AutoStart.tlog/Cl.items.tlog -------------------------------------------------------------------------------- /trypack/AutoStart/x64/Release/AutoStart.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/AutoStart/x64/Release/AutoStart.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /trypack/AutoStart/x64/Release/AutoStart.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/AutoStart/x64/Release/AutoStart.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /trypack/AutoStart/x64/Release/AutoStart.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/AutoStart/x64/Release/AutoStart.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /trypack/AutoStart/x64/Release/AutoStart.tlog/link.write.2u.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/AutoStart/x64/Release/AutoStart.tlog/link.write.2u.tlog -------------------------------------------------------------------------------- /trypack/AutoStart/x64/Release/AutoStart.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/AutoStart/x64/Release/AutoStart.vcxproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /trypack/AutoStart/x64/Release/helpers.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/AutoStart/x64/Release/helpers.obj -------------------------------------------------------------------------------- /trypack/AutoStart/x64/Release/utils.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/AutoStart/x64/Release/utils.obj -------------------------------------------------------------------------------- /trypack/AutoStart/x64/Release/vc143.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/AutoStart/x64/Release/vc143.pdb -------------------------------------------------------------------------------- /trypack/FunEngine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/FunEngine.cpp -------------------------------------------------------------------------------- /trypack/FunEngine.exe.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/FunEngine.exe.manifest -------------------------------------------------------------------------------- /trypack/FunEngine.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/FunEngine.sln -------------------------------------------------------------------------------- /trypack/FunEngine.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/FunEngine.vcxproj -------------------------------------------------------------------------------- /trypack/FunEngine.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/FunEngine.vcxproj.filters -------------------------------------------------------------------------------- /trypack/FunEngine.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/FunEngine.vcxproj.user -------------------------------------------------------------------------------- /trypack/ListAttacker.exe.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/ListAttacker.exe.lnk -------------------------------------------------------------------------------- /trypack/ListAttacker/ListAttacker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/ListAttacker/ListAttacker.cpp -------------------------------------------------------------------------------- /trypack/ListAttacker/ListAttacker.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/ListAttacker/ListAttacker.sln -------------------------------------------------------------------------------- /trypack/ListAttacker/ListAttacker.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/ListAttacker/ListAttacker.vcxproj -------------------------------------------------------------------------------- /trypack/ListAttacker/ListAttacker.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/ListAttacker/ListAttacker.vcxproj.filters -------------------------------------------------------------------------------- /trypack/ListAttacker/ListAttacker.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/ListAttacker/ListAttacker.vcxproj.user -------------------------------------------------------------------------------- /trypack/ListAttacker/x64/Release/ListAttacker.Build.CppClean.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/ListAttacker/x64/Release/ListAttacker.Build.CppClean.log -------------------------------------------------------------------------------- /trypack/ListAttacker/x64/Release/ListAttacker.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/ListAttacker/x64/Release/ListAttacker.exe -------------------------------------------------------------------------------- /trypack/ListAttacker/x64/Release/ListAttacker.exe.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/ListAttacker/x64/Release/ListAttacker.exe.lnk -------------------------------------------------------------------------------- /trypack/ListAttacker/x64/Release/ListAttacker.exe.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/ListAttacker/x64/Release/ListAttacker.exe.recipe -------------------------------------------------------------------------------- /trypack/ListAttacker/x64/Release/ListAttacker.iobj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/ListAttacker/x64/Release/ListAttacker.iobj -------------------------------------------------------------------------------- /trypack/ListAttacker/x64/Release/ListAttacker.ipdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/ListAttacker/x64/Release/ListAttacker.ipdb -------------------------------------------------------------------------------- /trypack/ListAttacker/x64/Release/ListAttacker.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/ListAttacker/x64/Release/ListAttacker.log -------------------------------------------------------------------------------- /trypack/ListAttacker/x64/Release/ListAttacker.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/ListAttacker/x64/Release/ListAttacker.obj -------------------------------------------------------------------------------- /trypack/ListAttacker/x64/Release/ListAttacker.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/ListAttacker/x64/Release/ListAttacker.pdb -------------------------------------------------------------------------------- /trypack/ListAttacker/x64/Release/ListAttacker.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/ListAttacker/x64/Release/ListAttacker.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /trypack/ListAttacker/x64/Release/ListAttacker.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/ListAttacker/x64/Release/ListAttacker.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /trypack/ListAttacker/x64/Release/ListAttacker.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/ListAttacker/x64/Release/ListAttacker.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /trypack/ListAttacker/x64/Release/ListAttacker.tlog/Cl.items.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/ListAttacker/x64/Release/ListAttacker.tlog/Cl.items.tlog -------------------------------------------------------------------------------- /trypack/ListAttacker/x64/Release/ListAttacker.tlog/ListAttacker.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/ListAttacker/x64/Release/ListAttacker.tlog/ListAttacker.lastbuildstate -------------------------------------------------------------------------------- /trypack/ListAttacker/x64/Release/ListAttacker.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/ListAttacker/x64/Release/ListAttacker.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /trypack/ListAttacker/x64/Release/ListAttacker.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/ListAttacker/x64/Release/ListAttacker.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /trypack/ListAttacker/x64/Release/ListAttacker.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/ListAttacker/x64/Release/ListAttacker.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /trypack/ListAttacker/x64/Release/ListAttacker.tlog/link.write.2u.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/ListAttacker/x64/Release/ListAttacker.tlog/link.write.2u.tlog -------------------------------------------------------------------------------- /trypack/ListAttacker/x64/Release/ListAttacker.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/ListAttacker/x64/Release/ListAttacker.vcxproj.FileListAbsolute.txt -------------------------------------------------------------------------------- /trypack/ListAttacker/x64/Release/vc143.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/ListAttacker/x64/Release/vc143.pdb -------------------------------------------------------------------------------- /trypack/configurations.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/configurations.cpp -------------------------------------------------------------------------------- /trypack/configurations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/configurations.h -------------------------------------------------------------------------------- /trypack/elevate.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/elevate.bat -------------------------------------------------------------------------------- /trypack/mt.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/mt.exe -------------------------------------------------------------------------------- /trypack/networking.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/networking.cpp -------------------------------------------------------------------------------- /trypack/networking.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/networking.h -------------------------------------------------------------------------------- /trypack/services.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/services.h -------------------------------------------------------------------------------- /trypack/servicess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/servicess.h -------------------------------------------------------------------------------- /trypack/try.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/try.zip -------------------------------------------------------------------------------- /trypack/trypack.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/trypack.zip -------------------------------------------------------------------------------- /trypack/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/utils.cpp -------------------------------------------------------------------------------- /trypack/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/utils.h -------------------------------------------------------------------------------- /trypack/x64/Release/FunEngine.Build.CppClean.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/x64/Release/FunEngine.Build.CppClean.log -------------------------------------------------------------------------------- /trypack/x64/Release/FunEngine.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/x64/Release/FunEngine.exe -------------------------------------------------------------------------------- /trypack/x64/Release/FunEngine.exe.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/x64/Release/FunEngine.exe.recipe -------------------------------------------------------------------------------- /trypack/x64/Release/FunEngine.iobj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/x64/Release/FunEngine.iobj -------------------------------------------------------------------------------- /trypack/x64/Release/FunEngine.ipdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/x64/Release/FunEngine.ipdb -------------------------------------------------------------------------------- /trypack/x64/Release/FunEngine.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/x64/Release/FunEngine.log -------------------------------------------------------------------------------- /trypack/x64/Release/FunEngine.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/x64/Release/FunEngine.obj -------------------------------------------------------------------------------- /trypack/x64/Release/FunEngine.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/x64/Release/FunEngine.pdb -------------------------------------------------------------------------------- /trypack/x64/Release/FunEngine.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/x64/Release/FunEngine.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /trypack/x64/Release/FunEngine.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/x64/Release/FunEngine.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /trypack/x64/Release/FunEngine.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/x64/Release/FunEngine.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /trypack/x64/Release/FunEngine.tlog/Cl.items.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/x64/Release/FunEngine.tlog/Cl.items.tlog -------------------------------------------------------------------------------- /trypack/x64/Release/FunEngine.tlog/FunEngine.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/x64/Release/FunEngine.tlog/FunEngine.lastbuildstate -------------------------------------------------------------------------------- /trypack/x64/Release/FunEngine.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/x64/Release/FunEngine.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /trypack/x64/Release/FunEngine.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/x64/Release/FunEngine.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /trypack/x64/Release/FunEngine.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/x64/Release/FunEngine.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /trypack/x64/Release/FunEngine.tlog/link.write.2u.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/x64/Release/FunEngine.tlog/link.write.2u.tlog -------------------------------------------------------------------------------- /trypack/x64/Release/FunEngine.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | H:\current\trypack\x64\Release\FunEngine.exe 2 | -------------------------------------------------------------------------------- /trypack/x64/Release/configurations.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/x64/Release/configurations.obj -------------------------------------------------------------------------------- /trypack/x64/Release/networking.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/x64/Release/networking.obj -------------------------------------------------------------------------------- /trypack/x64/Release/utils.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/x64/Release/utils.obj -------------------------------------------------------------------------------- /trypack/x64/Release/vc143.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaygitub/windows-rootkit/HEAD/trypack/x64/Release/vc143.pdb --------------------------------------------------------------------------------