문제

Is it possible to inject 64 bit dll into 64 bit host app from 32 bit app in native c? (not C# or managed c++)

I compiled the dll I want to inject in both 32 and 64 form, but when I call

RhInjectLibrary(pid,0,EASYHOOK_INJECT_DEFAULT,path,path64,NULL);

I get WOW error.

32 into 32 injection works fine.

도움이 되었습니까?

해결책

You will need to create a helper 64-bit application that does the injection for you.

다른 팁

No, you cannot since x86 application cannot even OpenProcess of a x64 process.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top