├── LoadDll.sln ├── LoadDll ├── Function │ ├── ApiInit.cpp │ ├── ApiInit.h │ ├── HideFunction.c │ ├── HideFunction.h │ └── defs.h ├── LoadDll.def ├── LoadDll.h ├── LoadDll.vcproj ├── LoadModel.cpp ├── LoadModel.dsp ├── LoadModel.h ├── main.cpp └── memset.lib ├── README.MD └── Test ├── Test.vcproj └── main.cpp /LoadDll.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerrbty/RemoteLoadDll/HEAD/LoadDll.sln -------------------------------------------------------------------------------- /LoadDll/Function/ApiInit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerrbty/RemoteLoadDll/HEAD/LoadDll/Function/ApiInit.cpp -------------------------------------------------------------------------------- /LoadDll/Function/ApiInit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerrbty/RemoteLoadDll/HEAD/LoadDll/Function/ApiInit.h -------------------------------------------------------------------------------- /LoadDll/Function/HideFunction.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerrbty/RemoteLoadDll/HEAD/LoadDll/Function/HideFunction.c -------------------------------------------------------------------------------- /LoadDll/Function/HideFunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerrbty/RemoteLoadDll/HEAD/LoadDll/Function/HideFunction.h -------------------------------------------------------------------------------- /LoadDll/Function/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerrbty/RemoteLoadDll/HEAD/LoadDll/Function/defs.h -------------------------------------------------------------------------------- /LoadDll/LoadDll.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerrbty/RemoteLoadDll/HEAD/LoadDll/LoadDll.def -------------------------------------------------------------------------------- /LoadDll/LoadDll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerrbty/RemoteLoadDll/HEAD/LoadDll/LoadDll.h -------------------------------------------------------------------------------- /LoadDll/LoadDll.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerrbty/RemoteLoadDll/HEAD/LoadDll/LoadDll.vcproj -------------------------------------------------------------------------------- /LoadDll/LoadModel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerrbty/RemoteLoadDll/HEAD/LoadDll/LoadModel.cpp -------------------------------------------------------------------------------- /LoadDll/LoadModel.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerrbty/RemoteLoadDll/HEAD/LoadDll/LoadModel.dsp -------------------------------------------------------------------------------- /LoadDll/LoadModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerrbty/RemoteLoadDll/HEAD/LoadDll/LoadModel.h -------------------------------------------------------------------------------- /LoadDll/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerrbty/RemoteLoadDll/HEAD/LoadDll/main.cpp -------------------------------------------------------------------------------- /LoadDll/memset.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerrbty/RemoteLoadDll/HEAD/LoadDll/memset.lib -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- 1 | 2018年11月16日 2 | 注入模块无导入表,只需要按PE文件展开以后调用DLLMain即可,然后可以再内存加载其他模块 3 | -------------------------------------------------------------------------------- /Test/Test.vcproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerrbty/RemoteLoadDll/HEAD/Test/Test.vcproj -------------------------------------------------------------------------------- /Test/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kerrbty/RemoteLoadDll/HEAD/Test/main.cpp --------------------------------------------------------------------------------