├── LICENSE ├── README.md ├── dll_tutorial ├── README.md ├── dll_main.cpp └── dll_main.h ├── images ├── 1.png ├── 10.png ├── 11.png ├── 12.png ├── 2.png ├── 3.png ├── 4.png ├── 5.png ├── 6.png ├── 7.png ├── 8.png └── 9.png ├── inject_tutorial └── README.md ├── list_offsets.asm └── list_opcodes.asm /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dentrax/DLL-Injection-with-Assembly/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dentrax/DLL-Injection-with-Assembly/HEAD/README.md -------------------------------------------------------------------------------- /dll_tutorial/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dentrax/DLL-Injection-with-Assembly/HEAD/dll_tutorial/README.md -------------------------------------------------------------------------------- /dll_tutorial/dll_main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dentrax/DLL-Injection-with-Assembly/HEAD/dll_tutorial/dll_main.cpp -------------------------------------------------------------------------------- /dll_tutorial/dll_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dentrax/DLL-Injection-with-Assembly/HEAD/dll_tutorial/dll_main.h -------------------------------------------------------------------------------- /images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dentrax/DLL-Injection-with-Assembly/HEAD/images/1.png -------------------------------------------------------------------------------- /images/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dentrax/DLL-Injection-with-Assembly/HEAD/images/10.png -------------------------------------------------------------------------------- /images/11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dentrax/DLL-Injection-with-Assembly/HEAD/images/11.png -------------------------------------------------------------------------------- /images/12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dentrax/DLL-Injection-with-Assembly/HEAD/images/12.png -------------------------------------------------------------------------------- /images/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dentrax/DLL-Injection-with-Assembly/HEAD/images/2.png -------------------------------------------------------------------------------- /images/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dentrax/DLL-Injection-with-Assembly/HEAD/images/3.png -------------------------------------------------------------------------------- /images/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dentrax/DLL-Injection-with-Assembly/HEAD/images/4.png -------------------------------------------------------------------------------- /images/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dentrax/DLL-Injection-with-Assembly/HEAD/images/5.png -------------------------------------------------------------------------------- /images/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dentrax/DLL-Injection-with-Assembly/HEAD/images/6.png -------------------------------------------------------------------------------- /images/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dentrax/DLL-Injection-with-Assembly/HEAD/images/7.png -------------------------------------------------------------------------------- /images/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dentrax/DLL-Injection-with-Assembly/HEAD/images/8.png -------------------------------------------------------------------------------- /images/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dentrax/DLL-Injection-with-Assembly/HEAD/images/9.png -------------------------------------------------------------------------------- /inject_tutorial/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dentrax/DLL-Injection-with-Assembly/HEAD/inject_tutorial/README.md -------------------------------------------------------------------------------- /list_offsets.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dentrax/DLL-Injection-with-Assembly/HEAD/list_offsets.asm -------------------------------------------------------------------------------- /list_opcodes.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Dentrax/DLL-Injection-with-Assembly/HEAD/list_opcodes.asm --------------------------------------------------------------------------------