├── .gitignore ├── CreatePatched ├── CreatePatched.cpp ├── CreatePatched.h ├── CreatePatched.vcxproj ├── CreatePatched.vcxproj.filters └── README.md ├── CreateSection ├── CreateSection.cpp ├── CreateSection.h ├── CreateSection.vcxproj ├── CreateSection.vcxproj.filters └── README.md ├── CreateSectionAPC ├── CreateSectionAPC.cpp ├── CreateSectionAPC.h ├── CreateSectionAPC.vcxproj ├── CreateSectionAPC.vcxproj.filters └── README.md ├── FullCopy ├── FullCopy.cpp ├── FullCopy.h ├── FullCopy.vcxproj ├── FullCopy.vcxproj.filters └── README.md ├── Injectopi.sln ├── LICENSE.md ├── README.md ├── SHELLCODE.md ├── include ├── utils.cpp └── utils.h └── resources ├── CONTAINING_RECORD.png ├── MapSection.png ├── RELOC_BLOCK.png └── x86-crash-course.pdf /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peperunas/injectopi/HEAD/.gitignore -------------------------------------------------------------------------------- /CreatePatched/CreatePatched.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peperunas/injectopi/HEAD/CreatePatched/CreatePatched.cpp -------------------------------------------------------------------------------- /CreatePatched/CreatePatched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peperunas/injectopi/HEAD/CreatePatched/CreatePatched.h -------------------------------------------------------------------------------- /CreatePatched/CreatePatched.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peperunas/injectopi/HEAD/CreatePatched/CreatePatched.vcxproj -------------------------------------------------------------------------------- /CreatePatched/CreatePatched.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peperunas/injectopi/HEAD/CreatePatched/CreatePatched.vcxproj.filters -------------------------------------------------------------------------------- /CreatePatched/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peperunas/injectopi/HEAD/CreatePatched/README.md -------------------------------------------------------------------------------- /CreateSection/CreateSection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peperunas/injectopi/HEAD/CreateSection/CreateSection.cpp -------------------------------------------------------------------------------- /CreateSection/CreateSection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peperunas/injectopi/HEAD/CreateSection/CreateSection.h -------------------------------------------------------------------------------- /CreateSection/CreateSection.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peperunas/injectopi/HEAD/CreateSection/CreateSection.vcxproj -------------------------------------------------------------------------------- /CreateSection/CreateSection.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peperunas/injectopi/HEAD/CreateSection/CreateSection.vcxproj.filters -------------------------------------------------------------------------------- /CreateSection/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peperunas/injectopi/HEAD/CreateSection/README.md -------------------------------------------------------------------------------- /CreateSectionAPC/CreateSectionAPC.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peperunas/injectopi/HEAD/CreateSectionAPC/CreateSectionAPC.cpp -------------------------------------------------------------------------------- /CreateSectionAPC/CreateSectionAPC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peperunas/injectopi/HEAD/CreateSectionAPC/CreateSectionAPC.h -------------------------------------------------------------------------------- /CreateSectionAPC/CreateSectionAPC.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peperunas/injectopi/HEAD/CreateSectionAPC/CreateSectionAPC.vcxproj -------------------------------------------------------------------------------- /CreateSectionAPC/CreateSectionAPC.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peperunas/injectopi/HEAD/CreateSectionAPC/CreateSectionAPC.vcxproj.filters -------------------------------------------------------------------------------- /CreateSectionAPC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peperunas/injectopi/HEAD/CreateSectionAPC/README.md -------------------------------------------------------------------------------- /FullCopy/FullCopy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peperunas/injectopi/HEAD/FullCopy/FullCopy.cpp -------------------------------------------------------------------------------- /FullCopy/FullCopy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peperunas/injectopi/HEAD/FullCopy/FullCopy.h -------------------------------------------------------------------------------- /FullCopy/FullCopy.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peperunas/injectopi/HEAD/FullCopy/FullCopy.vcxproj -------------------------------------------------------------------------------- /FullCopy/FullCopy.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peperunas/injectopi/HEAD/FullCopy/FullCopy.vcxproj.filters -------------------------------------------------------------------------------- /FullCopy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peperunas/injectopi/HEAD/FullCopy/README.md -------------------------------------------------------------------------------- /Injectopi.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peperunas/injectopi/HEAD/Injectopi.sln -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peperunas/injectopi/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peperunas/injectopi/HEAD/README.md -------------------------------------------------------------------------------- /SHELLCODE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peperunas/injectopi/HEAD/SHELLCODE.md -------------------------------------------------------------------------------- /include/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peperunas/injectopi/HEAD/include/utils.cpp -------------------------------------------------------------------------------- /include/utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peperunas/injectopi/HEAD/include/utils.h -------------------------------------------------------------------------------- /resources/CONTAINING_RECORD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peperunas/injectopi/HEAD/resources/CONTAINING_RECORD.png -------------------------------------------------------------------------------- /resources/MapSection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peperunas/injectopi/HEAD/resources/MapSection.png -------------------------------------------------------------------------------- /resources/RELOC_BLOCK.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peperunas/injectopi/HEAD/resources/RELOC_BLOCK.png -------------------------------------------------------------------------------- /resources/x86-crash-course.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/peperunas/injectopi/HEAD/resources/x86-crash-course.pdf --------------------------------------------------------------------------------