├── .gitignore ├── ProcessHollowing.sln ├── README.md └── SectionRemapLoader ├── Helper.cpp ├── Helper.hpp ├── KernelApis.hpp ├── OwnedResource.hpp ├── SectionRemapLoader.vcxproj ├── SectionRemapLoader.vcxproj.filters ├── SectionRemapLoader.vcxproj.user └── _tmain.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | .vs/ 2 | bin/ 3 | obj/ 4 | -------------------------------------------------------------------------------- /ProcessHollowing.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoubleLabyrinth/ProcessHollowing/HEAD/ProcessHollowing.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoubleLabyrinth/ProcessHollowing/HEAD/README.md -------------------------------------------------------------------------------- /SectionRemapLoader/Helper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoubleLabyrinth/ProcessHollowing/HEAD/SectionRemapLoader/Helper.cpp -------------------------------------------------------------------------------- /SectionRemapLoader/Helper.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoubleLabyrinth/ProcessHollowing/HEAD/SectionRemapLoader/Helper.hpp -------------------------------------------------------------------------------- /SectionRemapLoader/KernelApis.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoubleLabyrinth/ProcessHollowing/HEAD/SectionRemapLoader/KernelApis.hpp -------------------------------------------------------------------------------- /SectionRemapLoader/OwnedResource.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoubleLabyrinth/ProcessHollowing/HEAD/SectionRemapLoader/OwnedResource.hpp -------------------------------------------------------------------------------- /SectionRemapLoader/SectionRemapLoader.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoubleLabyrinth/ProcessHollowing/HEAD/SectionRemapLoader/SectionRemapLoader.vcxproj -------------------------------------------------------------------------------- /SectionRemapLoader/SectionRemapLoader.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoubleLabyrinth/ProcessHollowing/HEAD/SectionRemapLoader/SectionRemapLoader.vcxproj.filters -------------------------------------------------------------------------------- /SectionRemapLoader/SectionRemapLoader.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoubleLabyrinth/ProcessHollowing/HEAD/SectionRemapLoader/SectionRemapLoader.vcxproj.user -------------------------------------------------------------------------------- /SectionRemapLoader/_tmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DoubleLabyrinth/ProcessHollowing/HEAD/SectionRemapLoader/_tmain.cpp --------------------------------------------------------------------------------