gitextract_mwid84fv/ ├── .gitattributes ├── .gitignore ├── ControlPanel/ │ ├── ControlPanel.cpp │ ├── ControlPanel.h │ ├── ControlPanel.qrc │ ├── ControlPanel.ui │ ├── ControlPanel.vcxproj │ ├── ControlPanel.vcxproj.filters │ ├── dlcommon.cpp │ ├── dlcommon.h │ ├── dlconfig.h │ ├── dldrivers.cpp │ ├── dldrivers.h │ ├── dlioctl.cpp │ ├── dlioctl.h │ ├── dlservices.cpp │ ├── dlservices.h │ └── main.cpp ├── KernelHiddenExcute/ │ ├── Head.h │ ├── HiddenCallApiTransfer.h │ ├── HiddenExecute.h │ ├── HiddenFunctions.h │ ├── KernelHiddenExcute.inf │ ├── KernelHiddenExcute.vcxproj │ ├── KernelHiddenExcute.vcxproj.filters │ ├── MyDebugPrint.h │ ├── PhysicalMemoryOperation.h │ ├── SectionOperation.h │ └── main.c ├── KernelHiddenExecute/ │ ├── DebugPrintEx.h │ ├── HiddenCallApiTransfer.c │ ├── HiddenCallApiTransfer.h │ ├── HiddenExecute.c │ ├── HiddenExecute.h │ ├── HiddenFunctions.c │ ├── HiddenFunctions.h │ ├── KernelHiddenExecute.inf │ ├── KernelHiddenExecute.vcxproj │ ├── KernelHiddenExecute.vcxproj.filters │ ├── PhysicalMemoryOperation.c │ ├── PhysicalMemoryOperation.h │ ├── SectionOperation.c │ ├── SectionOperation.h │ ├── main.c │ └── main.h ├── KernelHiddenExecute.sln ├── LICENSE ├── Malware/ │ ├── Attack.c │ ├── Attack.h │ ├── Malware.inf │ ├── Malware.vcxproj │ ├── Malware.vcxproj.filters │ ├── main.c │ └── main.h └── README.md