
Session 0을 지원하는 DLL 인젝션 유틸리티
현재 설계는 잘 알려진 DLL 주입 기술을 구현합니다:
ncloader.exe [process name | pid] [dll full path] [1]
note: the optional trailing '1' disables elevation attempt
일반 프롬프트에서 프로세스 이름으로 (제한된 토큰에 디버그 권한이 없음)
ncloader.exe some_service.exe c:\path\to\library.dll
Dll c:\path\to\library.dll successfully injected in session 0 process some_service.exe (debug privilege was enabled)
상승된 프롬프트에서 PID로 (토큰에 디버그 권한이 있지만 비활성화됨)
ncloader.exe 1234 c:\path\to\library.dll
Dll c:\path\to\library.dll successfully injected in session 1 process 1234