├── .gitignore ├── Bin ├── shell.dump.bin └── testlib.dll ├── DLib Attacher.sln ├── DLib Attacher ├── DLib Attacher.rc ├── DLib Attacher.vcxproj ├── DLib Attacher.vcxproj.filters ├── DLib Attacher.vcxproj.user ├── DLibAttach.cpp ├── DLibAttach.h ├── DLibAttacher.cpp ├── DLibAttacher.h ├── DLibAttacherDlg.cpp ├── DLibAttacherDlg.h ├── DLibEditDlg.cpp ├── DLibEditDlg.h ├── DLibShell.cpp ├── DLibShell.h ├── DLibShellStructs.h ├── ErrorHandler.cpp ├── ErrorHandler.h ├── PEManager.cpp ├── PEManager.h ├── RelBuilder.cpp ├── RelBuilder.h ├── ResPacker.cpp ├── ResPacker.h ├── res │ ├── DLib Attacher.ico │ ├── DLibAttacher.rc2 │ ├── icon1.ico │ ├── shellcode32.bin │ ├── shellcode32rel.bin │ ├── shellcode64.bin │ └── shellcode64rel.bin ├── resource.h ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── DLib Shellcode extract ├── DLib Shellcode extract.vcxproj ├── DLib Shellcode extract.vcxproj.filters ├── DLib Shellcode extract.vcxproj.user ├── extractor.cpp ├── stdafx.cpp ├── stdafx.h └── targetver.h ├── DLib Shellcode ├── DLib Shellcode.rc ├── DLib Shellcode.vcxproj ├── DLib Shellcode.vcxproj.filters ├── DLib Shellcode.vcxproj.user ├── main.cpp ├── main.h ├── resource.h └── shellcode.cpp └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKornev/DLib-Attacher/HEAD/.gitignore -------------------------------------------------------------------------------- /Bin/shell.dump.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKornev/DLib-Attacher/HEAD/Bin/shell.dump.bin -------------------------------------------------------------------------------- /Bin/testlib.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKornev/DLib-Attacher/HEAD/Bin/testlib.dll -------------------------------------------------------------------------------- /DLib Attacher.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKornev/DLib-Attacher/HEAD/DLib Attacher.sln -------------------------------------------------------------------------------- /DLib Attacher/DLib Attacher.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKornev/DLib-Attacher/HEAD/DLib Attacher/DLib Attacher.rc -------------------------------------------------------------------------------- /DLib Attacher/DLib Attacher.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKornev/DLib-Attacher/HEAD/DLib Attacher/DLib Attacher.vcxproj -------------------------------------------------------------------------------- /DLib Attacher/DLib Attacher.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKornev/DLib-Attacher/HEAD/DLib Attacher/DLib Attacher.vcxproj.filters -------------------------------------------------------------------------------- /DLib Attacher/DLib Attacher.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKornev/DLib-Attacher/HEAD/DLib Attacher/DLib Attacher.vcxproj.user -------------------------------------------------------------------------------- /DLib Attacher/DLibAttach.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKornev/DLib-Attacher/HEAD/DLib Attacher/DLibAttach.cpp -------------------------------------------------------------------------------- /DLib Attacher/DLibAttach.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKornev/DLib-Attacher/HEAD/DLib Attacher/DLibAttach.h -------------------------------------------------------------------------------- /DLib Attacher/DLibAttacher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKornev/DLib-Attacher/HEAD/DLib Attacher/DLibAttacher.cpp -------------------------------------------------------------------------------- /DLib Attacher/DLibAttacher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKornev/DLib-Attacher/HEAD/DLib Attacher/DLibAttacher.h -------------------------------------------------------------------------------- /DLib Attacher/DLibAttacherDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKornev/DLib-Attacher/HEAD/DLib Attacher/DLibAttacherDlg.cpp -------------------------------------------------------------------------------- /DLib Attacher/DLibAttacherDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKornev/DLib-Attacher/HEAD/DLib Attacher/DLibAttacherDlg.h -------------------------------------------------------------------------------- /DLib Attacher/DLibEditDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKornev/DLib-Attacher/HEAD/DLib Attacher/DLibEditDlg.cpp -------------------------------------------------------------------------------- /DLib Attacher/DLibEditDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKornev/DLib-Attacher/HEAD/DLib Attacher/DLibEditDlg.h -------------------------------------------------------------------------------- /DLib Attacher/DLibShell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKornev/DLib-Attacher/HEAD/DLib Attacher/DLibShell.cpp -------------------------------------------------------------------------------- /DLib Attacher/DLibShell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKornev/DLib-Attacher/HEAD/DLib Attacher/DLibShell.h -------------------------------------------------------------------------------- /DLib Attacher/DLibShellStructs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKornev/DLib-Attacher/HEAD/DLib Attacher/DLibShellStructs.h -------------------------------------------------------------------------------- /DLib Attacher/ErrorHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKornev/DLib-Attacher/HEAD/DLib Attacher/ErrorHandler.cpp -------------------------------------------------------------------------------- /DLib Attacher/ErrorHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKornev/DLib-Attacher/HEAD/DLib Attacher/ErrorHandler.h -------------------------------------------------------------------------------- /DLib Attacher/PEManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKornev/DLib-Attacher/HEAD/DLib Attacher/PEManager.cpp -------------------------------------------------------------------------------- /DLib Attacher/PEManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKornev/DLib-Attacher/HEAD/DLib Attacher/PEManager.h -------------------------------------------------------------------------------- /DLib Attacher/RelBuilder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKornev/DLib-Attacher/HEAD/DLib Attacher/RelBuilder.cpp -------------------------------------------------------------------------------- /DLib Attacher/RelBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKornev/DLib-Attacher/HEAD/DLib Attacher/RelBuilder.h -------------------------------------------------------------------------------- /DLib Attacher/ResPacker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKornev/DLib-Attacher/HEAD/DLib Attacher/ResPacker.cpp -------------------------------------------------------------------------------- /DLib Attacher/ResPacker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKornev/DLib-Attacher/HEAD/DLib Attacher/ResPacker.h -------------------------------------------------------------------------------- /DLib Attacher/res/DLib Attacher.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKornev/DLib-Attacher/HEAD/DLib Attacher/res/DLib Attacher.ico -------------------------------------------------------------------------------- /DLib Attacher/res/DLibAttacher.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKornev/DLib-Attacher/HEAD/DLib Attacher/res/DLibAttacher.rc2 -------------------------------------------------------------------------------- /DLib Attacher/res/icon1.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKornev/DLib-Attacher/HEAD/DLib Attacher/res/icon1.ico -------------------------------------------------------------------------------- /DLib Attacher/res/shellcode32.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKornev/DLib-Attacher/HEAD/DLib Attacher/res/shellcode32.bin -------------------------------------------------------------------------------- /DLib Attacher/res/shellcode32rel.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKornev/DLib-Attacher/HEAD/DLib Attacher/res/shellcode32rel.bin -------------------------------------------------------------------------------- /DLib Attacher/res/shellcode64.bin: -------------------------------------------------------------------------------- 1 | typedef struct -------------------------------------------------------------------------------- /DLib Attacher/res/shellcode64rel.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKornev/DLib-Attacher/HEAD/DLib Attacher/res/shellcode64rel.bin -------------------------------------------------------------------------------- /DLib Attacher/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKornev/DLib-Attacher/HEAD/DLib Attacher/resource.h -------------------------------------------------------------------------------- /DLib Attacher/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKornev/DLib-Attacher/HEAD/DLib Attacher/stdafx.cpp -------------------------------------------------------------------------------- /DLib Attacher/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKornev/DLib-Attacher/HEAD/DLib Attacher/stdafx.h -------------------------------------------------------------------------------- /DLib Attacher/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKornev/DLib-Attacher/HEAD/DLib Attacher/targetver.h -------------------------------------------------------------------------------- /DLib Shellcode extract/DLib Shellcode extract.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKornev/DLib-Attacher/HEAD/DLib Shellcode extract/DLib Shellcode extract.vcxproj -------------------------------------------------------------------------------- /DLib Shellcode extract/DLib Shellcode extract.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKornev/DLib-Attacher/HEAD/DLib Shellcode extract/DLib Shellcode extract.vcxproj.filters -------------------------------------------------------------------------------- /DLib Shellcode extract/DLib Shellcode extract.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKornev/DLib-Attacher/HEAD/DLib Shellcode extract/DLib Shellcode extract.vcxproj.user -------------------------------------------------------------------------------- /DLib Shellcode extract/extractor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKornev/DLib-Attacher/HEAD/DLib Shellcode extract/extractor.cpp -------------------------------------------------------------------------------- /DLib Shellcode extract/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKornev/DLib-Attacher/HEAD/DLib Shellcode extract/stdafx.cpp -------------------------------------------------------------------------------- /DLib Shellcode extract/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKornev/DLib-Attacher/HEAD/DLib Shellcode extract/stdafx.h -------------------------------------------------------------------------------- /DLib Shellcode extract/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKornev/DLib-Attacher/HEAD/DLib Shellcode extract/targetver.h -------------------------------------------------------------------------------- /DLib Shellcode/DLib Shellcode.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKornev/DLib-Attacher/HEAD/DLib Shellcode/DLib Shellcode.rc -------------------------------------------------------------------------------- /DLib Shellcode/DLib Shellcode.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKornev/DLib-Attacher/HEAD/DLib Shellcode/DLib Shellcode.vcxproj -------------------------------------------------------------------------------- /DLib Shellcode/DLib Shellcode.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKornev/DLib-Attacher/HEAD/DLib Shellcode/DLib Shellcode.vcxproj.filters -------------------------------------------------------------------------------- /DLib Shellcode/DLib Shellcode.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKornev/DLib-Attacher/HEAD/DLib Shellcode/DLib Shellcode.vcxproj.user -------------------------------------------------------------------------------- /DLib Shellcode/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKornev/DLib-Attacher/HEAD/DLib Shellcode/main.cpp -------------------------------------------------------------------------------- /DLib Shellcode/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKornev/DLib-Attacher/HEAD/DLib Shellcode/main.h -------------------------------------------------------------------------------- /DLib Shellcode/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKornev/DLib-Attacher/HEAD/DLib Shellcode/resource.h -------------------------------------------------------------------------------- /DLib Shellcode/shellcode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKornev/DLib-Attacher/HEAD/DLib Shellcode/shellcode.cpp -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKornev/DLib-Attacher/HEAD/README.md --------------------------------------------------------------------------------