├── .gitignore ├── README.md ├── src ├── defines.hpp ├── hooks.cpp ├── hooks.hpp ├── loader.cpp ├── loader.hpp ├── main.cpp ├── uefi-rt.vcxproj ├── uefi-rt.vcxproj.filters ├── uefi-rt.vcxproj.user ├── uefi.cpp ├── uefi.hpp ├── utils.cpp └── utils.hpp └── uefi-rt.sln /.gitignore: -------------------------------------------------------------------------------- 1 | [Dd]ebug/ 2 | [Rr]elease/ 3 | x64/ 4 | x86/ 5 | .vs/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senko37/drvload-bootkit/HEAD/README.md -------------------------------------------------------------------------------- /src/defines.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senko37/drvload-bootkit/HEAD/src/defines.hpp -------------------------------------------------------------------------------- /src/hooks.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senko37/drvload-bootkit/HEAD/src/hooks.cpp -------------------------------------------------------------------------------- /src/hooks.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senko37/drvload-bootkit/HEAD/src/hooks.hpp -------------------------------------------------------------------------------- /src/loader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senko37/drvload-bootkit/HEAD/src/loader.cpp -------------------------------------------------------------------------------- /src/loader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senko37/drvload-bootkit/HEAD/src/loader.hpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senko37/drvload-bootkit/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/uefi-rt.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senko37/drvload-bootkit/HEAD/src/uefi-rt.vcxproj -------------------------------------------------------------------------------- /src/uefi-rt.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senko37/drvload-bootkit/HEAD/src/uefi-rt.vcxproj.filters -------------------------------------------------------------------------------- /src/uefi-rt.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senko37/drvload-bootkit/HEAD/src/uefi-rt.vcxproj.user -------------------------------------------------------------------------------- /src/uefi.cpp: -------------------------------------------------------------------------------- 1 | #include "uefi.hpp" 2 | 3 | EFI_SYSTEM_TABLE* g_ST; 4 | -------------------------------------------------------------------------------- /src/uefi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senko37/drvload-bootkit/HEAD/src/uefi.hpp -------------------------------------------------------------------------------- /src/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senko37/drvload-bootkit/HEAD/src/utils.cpp -------------------------------------------------------------------------------- /src/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senko37/drvload-bootkit/HEAD/src/utils.hpp -------------------------------------------------------------------------------- /uefi-rt.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/senko37/drvload-bootkit/HEAD/uefi-rt.sln --------------------------------------------------------------------------------