gitextract_hzqo4tbr/ ├── README.md ├── bin/ │ ├── rootkit_installer.pdb │ └── rootkit_ping.py └── src/ ├── 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.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