├── .gitignore ├── LICENSE ├── README-zh_CN.md ├── README.md ├── dllhijack.cpp ├── dllhijack.h ├── example ├── bin │ ├── x64 │ │ ├── dll.dll │ │ ├── fakedll.dll │ │ └── test.exe │ └── x86 │ │ ├── dll.dll │ │ ├── dll.dll.1 │ │ └── test.exe ├── dll │ ├── dll.cpp │ ├── dll.def │ ├── dll.vcxproj │ ├── dll.vcxproj.filters │ ├── dllmain.cpp │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── fakedll │ ├── dllmain.cpp │ ├── fakedll.cpp │ ├── fakedll.vcxproj │ ├── fakedll.vcxproj.filters │ ├── stdafx.cpp │ ├── stdafx.h │ └── targetver.h ├── test.sln └── test │ ├── pch.cpp │ ├── pch.h │ ├── test.cpp │ ├── test.vcxproj │ └── test.vcxproj.filters └── pay.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhkgg/SuperDllHijack/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhkgg/SuperDllHijack/HEAD/LICENSE -------------------------------------------------------------------------------- /README-zh_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhkgg/SuperDllHijack/HEAD/README-zh_CN.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhkgg/SuperDllHijack/HEAD/README.md -------------------------------------------------------------------------------- /dllhijack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhkgg/SuperDllHijack/HEAD/dllhijack.cpp -------------------------------------------------------------------------------- /dllhijack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhkgg/SuperDllHijack/HEAD/dllhijack.h -------------------------------------------------------------------------------- /example/bin/x64/dll.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhkgg/SuperDllHijack/HEAD/example/bin/x64/dll.dll -------------------------------------------------------------------------------- /example/bin/x64/fakedll.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhkgg/SuperDllHijack/HEAD/example/bin/x64/fakedll.dll -------------------------------------------------------------------------------- /example/bin/x64/test.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhkgg/SuperDllHijack/HEAD/example/bin/x64/test.exe -------------------------------------------------------------------------------- /example/bin/x86/dll.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhkgg/SuperDllHijack/HEAD/example/bin/x86/dll.dll -------------------------------------------------------------------------------- /example/bin/x86/dll.dll.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhkgg/SuperDllHijack/HEAD/example/bin/x86/dll.dll.1 -------------------------------------------------------------------------------- /example/bin/x86/test.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhkgg/SuperDllHijack/HEAD/example/bin/x86/test.exe -------------------------------------------------------------------------------- /example/dll/dll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhkgg/SuperDllHijack/HEAD/example/dll/dll.cpp -------------------------------------------------------------------------------- /example/dll/dll.def: -------------------------------------------------------------------------------- 1 | EXPORTS 2 | TestExport -------------------------------------------------------------------------------- /example/dll/dll.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhkgg/SuperDllHijack/HEAD/example/dll/dll.vcxproj -------------------------------------------------------------------------------- /example/dll/dll.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhkgg/SuperDllHijack/HEAD/example/dll/dll.vcxproj.filters -------------------------------------------------------------------------------- /example/dll/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhkgg/SuperDllHijack/HEAD/example/dll/dllmain.cpp -------------------------------------------------------------------------------- /example/dll/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhkgg/SuperDllHijack/HEAD/example/dll/stdafx.cpp -------------------------------------------------------------------------------- /example/dll/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhkgg/SuperDllHijack/HEAD/example/dll/stdafx.h -------------------------------------------------------------------------------- /example/dll/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhkgg/SuperDllHijack/HEAD/example/dll/targetver.h -------------------------------------------------------------------------------- /example/fakedll/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhkgg/SuperDllHijack/HEAD/example/fakedll/dllmain.cpp -------------------------------------------------------------------------------- /example/fakedll/fakedll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhkgg/SuperDllHijack/HEAD/example/fakedll/fakedll.cpp -------------------------------------------------------------------------------- /example/fakedll/fakedll.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhkgg/SuperDllHijack/HEAD/example/fakedll/fakedll.vcxproj -------------------------------------------------------------------------------- /example/fakedll/fakedll.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhkgg/SuperDllHijack/HEAD/example/fakedll/fakedll.vcxproj.filters -------------------------------------------------------------------------------- /example/fakedll/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhkgg/SuperDllHijack/HEAD/example/fakedll/stdafx.cpp -------------------------------------------------------------------------------- /example/fakedll/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhkgg/SuperDllHijack/HEAD/example/fakedll/stdafx.h -------------------------------------------------------------------------------- /example/fakedll/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhkgg/SuperDllHijack/HEAD/example/fakedll/targetver.h -------------------------------------------------------------------------------- /example/test.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhkgg/SuperDllHijack/HEAD/example/test.sln -------------------------------------------------------------------------------- /example/test/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhkgg/SuperDllHijack/HEAD/example/test/pch.cpp -------------------------------------------------------------------------------- /example/test/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhkgg/SuperDllHijack/HEAD/example/test/pch.h -------------------------------------------------------------------------------- /example/test/test.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhkgg/SuperDllHijack/HEAD/example/test/test.cpp -------------------------------------------------------------------------------- /example/test/test.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhkgg/SuperDllHijack/HEAD/example/test/test.vcxproj -------------------------------------------------------------------------------- /example/test/test.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhkgg/SuperDllHijack/HEAD/example/test/test.vcxproj.filters -------------------------------------------------------------------------------- /pay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anhkgg/SuperDllHijack/HEAD/pay.png --------------------------------------------------------------------------------