├── .gitattributes ├── .gitignore ├── 2025-07-19 20-44-46.mp4 ├── DllInExe ├── DllInExe.vcxproj ├── DllInExe.vcxproj.filters ├── DllInExe.vcxproj.user ├── ep.cpp ├── exports.def ├── stdafx.cpp └── stdafx.h ├── HolPro.sln ├── HolPro ├── .manifest ├── .rc ├── .rc2 ├── HolPro.vcxproj ├── HolPro.vcxproj.filters ├── HolPro.vcxproj.user ├── NoCfg.cpp ├── RbmmCopy.x64.asm ├── exe.x64.asm ├── exe.x86.asm ├── hol.cpp ├── resource.h ├── stdafx.cpp ├── stdafx.h ├── x64.asm ├── x64.exe ├── x86.asm ├── x86.exe └── zip.cpp ├── MSBuild └── v4.0 │ ├── Microsoft.Cpp.Win32.user.props │ ├── Microsoft.Cpp.arm64.user.props │ └── Microsoft.Cpp.x64.user.props ├── MoveToBand ├── MoveToBand.vcxproj ├── MoveToBand.vcxproj.filters ├── MoveToBand.vcxproj.user ├── ep.cpp ├── stdafx.cpp └── stdafx.h ├── NewScProj.exe ├── NewScProj ├── @.vcxproj ├── NewScProj.vcxproj ├── NewScProj.vcxproj.filters ├── NewScProj.vcxproj.user ├── ep.cpp ├── stdafx.cpp ├── stdafx.h ├── vcx.asm ├── x86.asm ├── zip.cpp └── zip.h ├── Release └── HolPro.exe ├── StartInBand ├── Exec.cpp ├── NoCfg.cpp ├── StartInBand.vcxproj ├── StartInBand.vcxproj.filters ├── StartInBand.vcxproj.user ├── stdafx.cpp └── stdafx.h ├── exe2 ├── .manifest ├── .rc2 ├── ep.cpp ├── exe2.rc ├── exe2.vcxproj ├── exe2.vcxproj.filters ├── exe2.vcxproj.user ├── resource.h ├── stdafx.cpp └── stdafx.h ├── pnth ├── .gitattributes ├── mini_yvals.h ├── ntbcd.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 ├── ntzwapi.h ├── pch.h ├── phnt.h ├── phnt_ntdef.h ├── phnt_windows.h ├── rtlframe.h ├── subprocesstag.h └── winsta.h ├── readme.md └── x64 └── Release ├── DllInExe.dll ├── HolPro.exe ├── MoveToBand.dll ├── StartInBand.exe ├── exe2.exe ├── start.bat └── test.bat /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/.gitignore -------------------------------------------------------------------------------- /2025-07-19 20-44-46.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/2025-07-19 20-44-46.mp4 -------------------------------------------------------------------------------- /DllInExe/DllInExe.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/DllInExe/DllInExe.vcxproj -------------------------------------------------------------------------------- /DllInExe/DllInExe.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/DllInExe/DllInExe.vcxproj.filters -------------------------------------------------------------------------------- /DllInExe/DllInExe.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/DllInExe/DllInExe.vcxproj.user -------------------------------------------------------------------------------- /DllInExe/ep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/DllInExe/ep.cpp -------------------------------------------------------------------------------- /DllInExe/exports.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/DllInExe/exports.def -------------------------------------------------------------------------------- /DllInExe/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/DllInExe/stdafx.cpp -------------------------------------------------------------------------------- /DllInExe/stdafx.h: -------------------------------------------------------------------------------- 1 | #define SECURITY_WIN32 2 | #include "pch.h" -------------------------------------------------------------------------------- /HolPro.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/HolPro.sln -------------------------------------------------------------------------------- /HolPro/.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/HolPro/.manifest -------------------------------------------------------------------------------- /HolPro/.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/HolPro/.rc -------------------------------------------------------------------------------- /HolPro/.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/HolPro/.rc2 -------------------------------------------------------------------------------- /HolPro/HolPro.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/HolPro/HolPro.vcxproj -------------------------------------------------------------------------------- /HolPro/HolPro.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/HolPro/HolPro.vcxproj.filters -------------------------------------------------------------------------------- /HolPro/HolPro.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/HolPro/HolPro.vcxproj.user -------------------------------------------------------------------------------- /HolPro/NoCfg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/HolPro/NoCfg.cpp -------------------------------------------------------------------------------- /HolPro/RbmmCopy.x64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/HolPro/RbmmCopy.x64.asm -------------------------------------------------------------------------------- /HolPro/exe.x64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/HolPro/exe.x64.asm -------------------------------------------------------------------------------- /HolPro/exe.x86.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/HolPro/exe.x86.asm -------------------------------------------------------------------------------- /HolPro/hol.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/HolPro/hol.cpp -------------------------------------------------------------------------------- /HolPro/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/HolPro/resource.h -------------------------------------------------------------------------------- /HolPro/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/HolPro/stdafx.cpp -------------------------------------------------------------------------------- /HolPro/stdafx.h: -------------------------------------------------------------------------------- 1 | #include "pch.h" -------------------------------------------------------------------------------- /HolPro/x64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/HolPro/x64.asm -------------------------------------------------------------------------------- /HolPro/x64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/HolPro/x64.exe -------------------------------------------------------------------------------- /HolPro/x86.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/HolPro/x86.asm -------------------------------------------------------------------------------- /HolPro/x86.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/HolPro/x86.exe -------------------------------------------------------------------------------- /HolPro/zip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/HolPro/zip.cpp -------------------------------------------------------------------------------- /MSBuild/v4.0/Microsoft.Cpp.Win32.user.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/MSBuild/v4.0/Microsoft.Cpp.Win32.user.props -------------------------------------------------------------------------------- /MSBuild/v4.0/Microsoft.Cpp.arm64.user.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/MSBuild/v4.0/Microsoft.Cpp.arm64.user.props -------------------------------------------------------------------------------- /MSBuild/v4.0/Microsoft.Cpp.x64.user.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/MSBuild/v4.0/Microsoft.Cpp.x64.user.props -------------------------------------------------------------------------------- /MoveToBand/MoveToBand.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/MoveToBand/MoveToBand.vcxproj -------------------------------------------------------------------------------- /MoveToBand/MoveToBand.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/MoveToBand/MoveToBand.vcxproj.filters -------------------------------------------------------------------------------- /MoveToBand/MoveToBand.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/MoveToBand/MoveToBand.vcxproj.user -------------------------------------------------------------------------------- /MoveToBand/ep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/MoveToBand/ep.cpp -------------------------------------------------------------------------------- /MoveToBand/stdafx.cpp: -------------------------------------------------------------------------------- 1 | #include "stdafx.h" 2 | 3 | -------------------------------------------------------------------------------- /MoveToBand/stdafx.h: -------------------------------------------------------------------------------- 1 | #define SECURITY_WIN32 2 | #include "pch.h" -------------------------------------------------------------------------------- /NewScProj.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/NewScProj.exe -------------------------------------------------------------------------------- /NewScProj/@.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/NewScProj/@.vcxproj -------------------------------------------------------------------------------- /NewScProj/NewScProj.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/NewScProj/NewScProj.vcxproj -------------------------------------------------------------------------------- /NewScProj/NewScProj.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/NewScProj/NewScProj.vcxproj.filters -------------------------------------------------------------------------------- /NewScProj/NewScProj.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/NewScProj/NewScProj.vcxproj.user -------------------------------------------------------------------------------- /NewScProj/ep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/NewScProj/ep.cpp -------------------------------------------------------------------------------- /NewScProj/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/NewScProj/stdafx.cpp -------------------------------------------------------------------------------- /NewScProj/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/NewScProj/stdafx.h -------------------------------------------------------------------------------- /NewScProj/vcx.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/NewScProj/vcx.asm -------------------------------------------------------------------------------- /NewScProj/x86.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/NewScProj/x86.asm -------------------------------------------------------------------------------- /NewScProj/zip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/NewScProj/zip.cpp -------------------------------------------------------------------------------- /NewScProj/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/NewScProj/zip.h -------------------------------------------------------------------------------- /Release/HolPro.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/Release/HolPro.exe -------------------------------------------------------------------------------- /StartInBand/Exec.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/StartInBand/Exec.cpp -------------------------------------------------------------------------------- /StartInBand/NoCfg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/StartInBand/NoCfg.cpp -------------------------------------------------------------------------------- /StartInBand/StartInBand.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/StartInBand/StartInBand.vcxproj -------------------------------------------------------------------------------- /StartInBand/StartInBand.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/StartInBand/StartInBand.vcxproj.filters -------------------------------------------------------------------------------- /StartInBand/StartInBand.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/StartInBand/StartInBand.vcxproj.user -------------------------------------------------------------------------------- /StartInBand/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/StartInBand/stdafx.cpp -------------------------------------------------------------------------------- /StartInBand/stdafx.h: -------------------------------------------------------------------------------- 1 | #define SECURITY_WIN32 2 | #include "pch.h" -------------------------------------------------------------------------------- /exe2/.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/exe2/.manifest -------------------------------------------------------------------------------- /exe2/.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/exe2/.rc2 -------------------------------------------------------------------------------- /exe2/ep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/exe2/ep.cpp -------------------------------------------------------------------------------- /exe2/exe2.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/exe2/exe2.rc -------------------------------------------------------------------------------- /exe2/exe2.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/exe2/exe2.vcxproj -------------------------------------------------------------------------------- /exe2/exe2.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/exe2/exe2.vcxproj.filters -------------------------------------------------------------------------------- /exe2/exe2.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/exe2/exe2.vcxproj.user -------------------------------------------------------------------------------- /exe2/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/exe2/resource.h -------------------------------------------------------------------------------- /exe2/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/exe2/stdafx.cpp -------------------------------------------------------------------------------- /exe2/stdafx.h: -------------------------------------------------------------------------------- 1 | #define SECURITY_WIN32 2 | #include "pch.h" -------------------------------------------------------------------------------- /pnth/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/pnth/.gitattributes -------------------------------------------------------------------------------- /pnth/mini_yvals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/pnth/mini_yvals.h -------------------------------------------------------------------------------- /pnth/ntbcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/pnth/ntbcd.h -------------------------------------------------------------------------------- /pnth/ntdbg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/pnth/ntdbg.h -------------------------------------------------------------------------------- /pnth/ntexapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/pnth/ntexapi.h -------------------------------------------------------------------------------- /pnth/ntgdi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/pnth/ntgdi.h -------------------------------------------------------------------------------- /pnth/ntioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/pnth/ntioapi.h -------------------------------------------------------------------------------- /pnth/ntkeapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/pnth/ntkeapi.h -------------------------------------------------------------------------------- /pnth/ntldr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/pnth/ntldr.h -------------------------------------------------------------------------------- /pnth/ntlpcapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/pnth/ntlpcapi.h -------------------------------------------------------------------------------- /pnth/ntmisc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/pnth/ntmisc.h -------------------------------------------------------------------------------- /pnth/ntmmapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/pnth/ntmmapi.h -------------------------------------------------------------------------------- /pnth/ntnls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/pnth/ntnls.h -------------------------------------------------------------------------------- /pnth/ntobapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/pnth/ntobapi.h -------------------------------------------------------------------------------- /pnth/ntpebteb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/pnth/ntpebteb.h -------------------------------------------------------------------------------- /pnth/ntpfapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/pnth/ntpfapi.h -------------------------------------------------------------------------------- /pnth/ntpnpapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/pnth/ntpnpapi.h -------------------------------------------------------------------------------- /pnth/ntpoapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/pnth/ntpoapi.h -------------------------------------------------------------------------------- /pnth/ntpsapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/pnth/ntpsapi.h -------------------------------------------------------------------------------- /pnth/ntregapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/pnth/ntregapi.h -------------------------------------------------------------------------------- /pnth/ntrtl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/pnth/ntrtl.h -------------------------------------------------------------------------------- /pnth/ntsam.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/pnth/ntsam.h -------------------------------------------------------------------------------- /pnth/ntseapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/pnth/ntseapi.h -------------------------------------------------------------------------------- /pnth/ntsmss.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/pnth/ntsmss.h -------------------------------------------------------------------------------- /pnth/nttmapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/pnth/nttmapi.h -------------------------------------------------------------------------------- /pnth/nttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/pnth/nttp.h -------------------------------------------------------------------------------- /pnth/ntwow64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/pnth/ntwow64.h -------------------------------------------------------------------------------- /pnth/ntxcapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/pnth/ntxcapi.h -------------------------------------------------------------------------------- /pnth/ntzwapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/pnth/ntzwapi.h -------------------------------------------------------------------------------- /pnth/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/pnth/pch.h -------------------------------------------------------------------------------- /pnth/phnt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/pnth/phnt.h -------------------------------------------------------------------------------- /pnth/phnt_ntdef.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/pnth/phnt_ntdef.h -------------------------------------------------------------------------------- /pnth/phnt_windows.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/pnth/phnt_windows.h -------------------------------------------------------------------------------- /pnth/rtlframe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/pnth/rtlframe.h -------------------------------------------------------------------------------- /pnth/subprocesstag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/pnth/subprocesstag.h -------------------------------------------------------------------------------- /pnth/winsta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/pnth/winsta.h -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/readme.md -------------------------------------------------------------------------------- /x64/Release/DllInExe.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/x64/Release/DllInExe.dll -------------------------------------------------------------------------------- /x64/Release/HolPro.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/x64/Release/HolPro.exe -------------------------------------------------------------------------------- /x64/Release/MoveToBand.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/x64/Release/MoveToBand.dll -------------------------------------------------------------------------------- /x64/Release/StartInBand.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/x64/Release/StartInBand.exe -------------------------------------------------------------------------------- /x64/Release/exe2.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/x64/Release/exe2.exe -------------------------------------------------------------------------------- /x64/Release/start.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rbmm/Hollowed-Process/HEAD/x64/Release/start.bat -------------------------------------------------------------------------------- /x64/Release/test.bat: -------------------------------------------------------------------------------- 1 | regsvr32 /s /n /i:"c:/windows/notepad.exe*" DllInExe.dll --------------------------------------------------------------------------------