문제

I need to make some exe file to load my DLL at startup...
What is the easiest way to do it?
I need this exactly, no any injectors or starters.

I though about adding one more code section into exe, rewriting to there entry point logic and placing DLL loading code, then NOPing original entry point and calling my custom made entry point function. Will this work? Are there any other easer ways?

I also thinking about changing one of system dll name in hex editor to name of my DLL. Will this work? If my dll then load that replaced system dll? Any thoughts?

도움이 되었습니까?

해결책

Adding it to the PE's import table should be enough. Woodman's lists a few tools which can do it:

http://www.woodmann.com/collaborative/tools/index.php/Category:Import_Editors

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