├── .gitattributes ├── CreateProcessInternalW-Full.sln ├── CreateProcessInternalW-Full ├── CreateProcessInternalW-Full.vcxproj ├── CreateProcessInternalW-Full.vcxproj.filters ├── CreateProcessInternalW-Full.vcxproj.user ├── StateRepository.hpp ├── apphelp.hpp ├── csrss.hpp ├── main.cpp ├── ntapi.hpp ├── ntdll.lib ├── otherapi.cpp ├── otherapi.hpp ├── output.cpp ├── process.cpp ├── structs.hpp ├── syscalls.cpp └── syscalls.hpp ├── LICENSE └── README.md /.gitattributes: -------------------------------------------------------------------------------- 1 | *.asm linguist-language=cpp 2 | -------------------------------------------------------------------------------- /CreateProcessInternalW-Full.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/je5442804/CreateProcessInternalW-Full/HEAD/CreateProcessInternalW-Full.sln -------------------------------------------------------------------------------- /CreateProcessInternalW-Full/CreateProcessInternalW-Full.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/je5442804/CreateProcessInternalW-Full/HEAD/CreateProcessInternalW-Full/CreateProcessInternalW-Full.vcxproj -------------------------------------------------------------------------------- /CreateProcessInternalW-Full/CreateProcessInternalW-Full.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/je5442804/CreateProcessInternalW-Full/HEAD/CreateProcessInternalW-Full/CreateProcessInternalW-Full.vcxproj.filters -------------------------------------------------------------------------------- /CreateProcessInternalW-Full/CreateProcessInternalW-Full.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/je5442804/CreateProcessInternalW-Full/HEAD/CreateProcessInternalW-Full/CreateProcessInternalW-Full.vcxproj.user -------------------------------------------------------------------------------- /CreateProcessInternalW-Full/StateRepository.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/je5442804/CreateProcessInternalW-Full/HEAD/CreateProcessInternalW-Full/StateRepository.hpp -------------------------------------------------------------------------------- /CreateProcessInternalW-Full/apphelp.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/je5442804/CreateProcessInternalW-Full/HEAD/CreateProcessInternalW-Full/apphelp.hpp -------------------------------------------------------------------------------- /CreateProcessInternalW-Full/csrss.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/je5442804/CreateProcessInternalW-Full/HEAD/CreateProcessInternalW-Full/csrss.hpp -------------------------------------------------------------------------------- /CreateProcessInternalW-Full/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/je5442804/CreateProcessInternalW-Full/HEAD/CreateProcessInternalW-Full/main.cpp -------------------------------------------------------------------------------- /CreateProcessInternalW-Full/ntapi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/je5442804/CreateProcessInternalW-Full/HEAD/CreateProcessInternalW-Full/ntapi.hpp -------------------------------------------------------------------------------- /CreateProcessInternalW-Full/ntdll.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/je5442804/CreateProcessInternalW-Full/HEAD/CreateProcessInternalW-Full/ntdll.lib -------------------------------------------------------------------------------- /CreateProcessInternalW-Full/otherapi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/je5442804/CreateProcessInternalW-Full/HEAD/CreateProcessInternalW-Full/otherapi.cpp -------------------------------------------------------------------------------- /CreateProcessInternalW-Full/otherapi.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/je5442804/CreateProcessInternalW-Full/HEAD/CreateProcessInternalW-Full/otherapi.hpp -------------------------------------------------------------------------------- /CreateProcessInternalW-Full/output.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/je5442804/CreateProcessInternalW-Full/HEAD/CreateProcessInternalW-Full/output.cpp -------------------------------------------------------------------------------- /CreateProcessInternalW-Full/process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/je5442804/CreateProcessInternalW-Full/HEAD/CreateProcessInternalW-Full/process.cpp -------------------------------------------------------------------------------- /CreateProcessInternalW-Full/structs.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/je5442804/CreateProcessInternalW-Full/HEAD/CreateProcessInternalW-Full/structs.hpp -------------------------------------------------------------------------------- /CreateProcessInternalW-Full/syscalls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/je5442804/CreateProcessInternalW-Full/HEAD/CreateProcessInternalW-Full/syscalls.cpp -------------------------------------------------------------------------------- /CreateProcessInternalW-Full/syscalls.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/je5442804/CreateProcessInternalW-Full/HEAD/CreateProcessInternalW-Full/syscalls.hpp -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/je5442804/CreateProcessInternalW-Full/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/je5442804/CreateProcessInternalW-Full/HEAD/README.md --------------------------------------------------------------------------------