├── README.md ├── binary ├── FVPKernel.dll └── FVPLoaderGui.exe └── source ├── FVPKernel ├── FVPKernel.cpp ├── FVPKernel.h ├── FVPKernel.vcxproj ├── FVPKernel.vcxproj.filters ├── FVPKernel.vcxproj.user ├── Gdi32Hook.cpp ├── Gdi32Hook.h ├── SectionProtector.h └── undoc_k32.lib ├── FVPLoader.sln ├── FVPLoaderGui ├── FVPLoaderGui.aps ├── FVPLoaderGui.cpp ├── FVPLoaderGui.ico ├── FVPLoaderGui.rc ├── FVPLoaderGui.vcxproj ├── FVPLoaderGui.vcxproj.filters ├── FVPLoaderGui.vcxproj.user ├── Resource.h ├── SHINKU_e21a.bmp ├── small.ico ├── targetver.h └── undoc_k32.lib └── NativeLib ├── Hash.h ├── LICENSE ├── NativeLib.vcxproj ├── NativeLib.vcxproj.filters ├── NativeLib.vcxproj.user ├── mountmgr.h ├── my.cpp ├── my.h ├── ntdbg.h ├── ntexapi.h ├── ntgdi.h ├── ntioapi.h ├── ntkeapi.h ├── ntldr.h ├── ntlpcapi.h ├── ntmisc.h ├── ntmmapi.h ├── ntnls.h ├── ntobapi.h ├── ntpebteb.h ├── ntpfapi.h ├── ntpnpapi.h ├── ntpoapi.h ├── ntpsapi.h ├── ntregapi.h ├── ntrtl.h ├── ntsam.h ├── ntseapi.h ├── ntsmss.h ├── nttmapi.h ├── nttp.h ├── ntwow64.h ├── ntxcapi.h ├── phnt.h ├── phnt_ntdef.h ├── phnt_windows.h ├── subprocesstag.h └── winsta.h /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/FVPLoader/HEAD/README.md -------------------------------------------------------------------------------- /binary/FVPKernel.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/FVPLoader/HEAD/binary/FVPKernel.dll -------------------------------------------------------------------------------- /binary/FVPLoaderGui.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/FVPLoader/HEAD/binary/FVPLoaderGui.exe -------------------------------------------------------------------------------- /source/FVPKernel/FVPKernel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/FVPLoader/HEAD/source/FVPKernel/FVPKernel.cpp -------------------------------------------------------------------------------- /source/FVPKernel/FVPKernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/FVPLoader/HEAD/source/FVPKernel/FVPKernel.h -------------------------------------------------------------------------------- /source/FVPKernel/FVPKernel.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/FVPLoader/HEAD/source/FVPKernel/FVPKernel.vcxproj -------------------------------------------------------------------------------- /source/FVPKernel/FVPKernel.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/FVPLoader/HEAD/source/FVPKernel/FVPKernel.vcxproj.filters -------------------------------------------------------------------------------- /source/FVPKernel/FVPKernel.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/FVPLoader/HEAD/source/FVPKernel/FVPKernel.vcxproj.user -------------------------------------------------------------------------------- /source/FVPKernel/Gdi32Hook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/FVPLoader/HEAD/source/FVPKernel/Gdi32Hook.cpp -------------------------------------------------------------------------------- /source/FVPKernel/Gdi32Hook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/FVPLoader/HEAD/source/FVPKernel/Gdi32Hook.h -------------------------------------------------------------------------------- /source/FVPKernel/SectionProtector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/FVPLoader/HEAD/source/FVPKernel/SectionProtector.h -------------------------------------------------------------------------------- /source/FVPKernel/undoc_k32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/FVPLoader/HEAD/source/FVPKernel/undoc_k32.lib -------------------------------------------------------------------------------- /source/FVPLoader.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/FVPLoader/HEAD/source/FVPLoader.sln -------------------------------------------------------------------------------- /source/FVPLoaderGui/FVPLoaderGui.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/FVPLoader/HEAD/source/FVPLoaderGui/FVPLoaderGui.aps -------------------------------------------------------------------------------- /source/FVPLoaderGui/FVPLoaderGui.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/FVPLoader/HEAD/source/FVPLoaderGui/FVPLoaderGui.cpp -------------------------------------------------------------------------------- /source/FVPLoaderGui/FVPLoaderGui.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/FVPLoader/HEAD/source/FVPLoaderGui/FVPLoaderGui.ico -------------------------------------------------------------------------------- /source/FVPLoaderGui/FVPLoaderGui.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/FVPLoader/HEAD/source/FVPLoaderGui/FVPLoaderGui.rc -------------------------------------------------------------------------------- /source/FVPLoaderGui/FVPLoaderGui.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/FVPLoader/HEAD/source/FVPLoaderGui/FVPLoaderGui.vcxproj -------------------------------------------------------------------------------- /source/FVPLoaderGui/FVPLoaderGui.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/FVPLoader/HEAD/source/FVPLoaderGui/FVPLoaderGui.vcxproj.filters -------------------------------------------------------------------------------- /source/FVPLoaderGui/FVPLoaderGui.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/FVPLoader/HEAD/source/FVPLoaderGui/FVPLoaderGui.vcxproj.user -------------------------------------------------------------------------------- /source/FVPLoaderGui/Resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/FVPLoader/HEAD/source/FVPLoaderGui/Resource.h -------------------------------------------------------------------------------- /source/FVPLoaderGui/SHINKU_e21a.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/FVPLoader/HEAD/source/FVPLoaderGui/SHINKU_e21a.bmp -------------------------------------------------------------------------------- /source/FVPLoaderGui/small.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/FVPLoader/HEAD/source/FVPLoaderGui/small.ico -------------------------------------------------------------------------------- /source/FVPLoaderGui/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/FVPLoader/HEAD/source/FVPLoaderGui/targetver.h -------------------------------------------------------------------------------- /source/FVPLoaderGui/undoc_k32.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/FVPLoader/HEAD/source/FVPLoaderGui/undoc_k32.lib -------------------------------------------------------------------------------- /source/NativeLib/Hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/FVPLoader/HEAD/source/NativeLib/Hash.h -------------------------------------------------------------------------------- /source/NativeLib/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/FVPLoader/HEAD/source/NativeLib/LICENSE -------------------------------------------------------------------------------- /source/NativeLib/NativeLib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/FVPLoader/HEAD/source/NativeLib/NativeLib.vcxproj -------------------------------------------------------------------------------- /source/NativeLib/NativeLib.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/FVPLoader/HEAD/source/NativeLib/NativeLib.vcxproj.filters -------------------------------------------------------------------------------- /source/NativeLib/NativeLib.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/FVPLoader/HEAD/source/NativeLib/NativeLib.vcxproj.user -------------------------------------------------------------------------------- /source/NativeLib/mountmgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/FVPLoader/HEAD/source/NativeLib/mountmgr.h -------------------------------------------------------------------------------- /source/NativeLib/my.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/FVPLoader/HEAD/source/NativeLib/my.cpp -------------------------------------------------------------------------------- /source/NativeLib/my.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/FVPLoader/HEAD/source/NativeLib/my.h -------------------------------------------------------------------------------- /source/NativeLib/ntdbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/FVPLoader/HEAD/source/NativeLib/ntdbg.h -------------------------------------------------------------------------------- /source/NativeLib/ntexapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/FVPLoader/HEAD/source/NativeLib/ntexapi.h -------------------------------------------------------------------------------- /source/NativeLib/ntgdi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/FVPLoader/HEAD/source/NativeLib/ntgdi.h -------------------------------------------------------------------------------- /source/NativeLib/ntioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/FVPLoader/HEAD/source/NativeLib/ntioapi.h -------------------------------------------------------------------------------- /source/NativeLib/ntkeapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/FVPLoader/HEAD/source/NativeLib/ntkeapi.h -------------------------------------------------------------------------------- /source/NativeLib/ntldr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/FVPLoader/HEAD/source/NativeLib/ntldr.h -------------------------------------------------------------------------------- /source/NativeLib/ntlpcapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/FVPLoader/HEAD/source/NativeLib/ntlpcapi.h -------------------------------------------------------------------------------- /source/NativeLib/ntmisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/FVPLoader/HEAD/source/NativeLib/ntmisc.h -------------------------------------------------------------------------------- /source/NativeLib/ntmmapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/FVPLoader/HEAD/source/NativeLib/ntmmapi.h -------------------------------------------------------------------------------- /source/NativeLib/ntnls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/FVPLoader/HEAD/source/NativeLib/ntnls.h -------------------------------------------------------------------------------- /source/NativeLib/ntobapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/FVPLoader/HEAD/source/NativeLib/ntobapi.h -------------------------------------------------------------------------------- /source/NativeLib/ntpebteb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/FVPLoader/HEAD/source/NativeLib/ntpebteb.h -------------------------------------------------------------------------------- /source/NativeLib/ntpfapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/FVPLoader/HEAD/source/NativeLib/ntpfapi.h -------------------------------------------------------------------------------- /source/NativeLib/ntpnpapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/FVPLoader/HEAD/source/NativeLib/ntpnpapi.h -------------------------------------------------------------------------------- /source/NativeLib/ntpoapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/FVPLoader/HEAD/source/NativeLib/ntpoapi.h -------------------------------------------------------------------------------- /source/NativeLib/ntpsapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/FVPLoader/HEAD/source/NativeLib/ntpsapi.h -------------------------------------------------------------------------------- /source/NativeLib/ntregapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/FVPLoader/HEAD/source/NativeLib/ntregapi.h -------------------------------------------------------------------------------- /source/NativeLib/ntrtl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/FVPLoader/HEAD/source/NativeLib/ntrtl.h -------------------------------------------------------------------------------- /source/NativeLib/ntsam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/FVPLoader/HEAD/source/NativeLib/ntsam.h -------------------------------------------------------------------------------- /source/NativeLib/ntseapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/FVPLoader/HEAD/source/NativeLib/ntseapi.h -------------------------------------------------------------------------------- /source/NativeLib/ntsmss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/FVPLoader/HEAD/source/NativeLib/ntsmss.h -------------------------------------------------------------------------------- /source/NativeLib/nttmapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/FVPLoader/HEAD/source/NativeLib/nttmapi.h -------------------------------------------------------------------------------- /source/NativeLib/nttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/FVPLoader/HEAD/source/NativeLib/nttp.h -------------------------------------------------------------------------------- /source/NativeLib/ntwow64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/FVPLoader/HEAD/source/NativeLib/ntwow64.h -------------------------------------------------------------------------------- /source/NativeLib/ntxcapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/FVPLoader/HEAD/source/NativeLib/ntxcapi.h -------------------------------------------------------------------------------- /source/NativeLib/phnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/FVPLoader/HEAD/source/NativeLib/phnt.h -------------------------------------------------------------------------------- /source/NativeLib/phnt_ntdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/FVPLoader/HEAD/source/NativeLib/phnt_ntdef.h -------------------------------------------------------------------------------- /source/NativeLib/phnt_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/FVPLoader/HEAD/source/NativeLib/phnt_windows.h -------------------------------------------------------------------------------- /source/NativeLib/subprocesstag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/FVPLoader/HEAD/source/NativeLib/subprocesstag.h -------------------------------------------------------------------------------- /source/NativeLib/winsta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xmoezzz/FVPLoader/HEAD/source/NativeLib/winsta.h --------------------------------------------------------------------------------