├── .gitattributes ├── .gitignore ├── README.md ├── Release ├── call_dll.exe ├── output_dll.exe ├── output_dll.iobj ├── output_dll.ipdb ├── output_dll.tlog │ └── output_dll.lastbuildstate └── outputdll.res ├── demo.jpg ├── framework.h ├── output_dll.cpp ├── output_dll.h ├── output_dll.sln ├── output_dll.vcxproj ├── output_dll.vcxproj.filters ├── output_dllDlg.cpp ├── output_dllDlg.h ├── outputdll.aps ├── outputdll.rc ├── pch.cpp ├── pch.h ├── res ├── output_dll.ico ├── outputdll.rc2 └── shellcode.dll ├── resource.h └── targetver.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-fire/shellcode-to-dll/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-fire/shellcode-to-dll/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-fire/shellcode-to-dll/HEAD/README.md -------------------------------------------------------------------------------- /Release/call_dll.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-fire/shellcode-to-dll/HEAD/Release/call_dll.exe -------------------------------------------------------------------------------- /Release/output_dll.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-fire/shellcode-to-dll/HEAD/Release/output_dll.exe -------------------------------------------------------------------------------- /Release/output_dll.iobj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-fire/shellcode-to-dll/HEAD/Release/output_dll.iobj -------------------------------------------------------------------------------- /Release/output_dll.ipdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-fire/shellcode-to-dll/HEAD/Release/output_dll.ipdb -------------------------------------------------------------------------------- /Release/output_dll.tlog/output_dll.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-fire/shellcode-to-dll/HEAD/Release/output_dll.tlog/output_dll.lastbuildstate -------------------------------------------------------------------------------- /Release/outputdll.res: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-fire/shellcode-to-dll/HEAD/Release/outputdll.res -------------------------------------------------------------------------------- /demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-fire/shellcode-to-dll/HEAD/demo.jpg -------------------------------------------------------------------------------- /framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-fire/shellcode-to-dll/HEAD/framework.h -------------------------------------------------------------------------------- /output_dll.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-fire/shellcode-to-dll/HEAD/output_dll.cpp -------------------------------------------------------------------------------- /output_dll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-fire/shellcode-to-dll/HEAD/output_dll.h -------------------------------------------------------------------------------- /output_dll.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-fire/shellcode-to-dll/HEAD/output_dll.sln -------------------------------------------------------------------------------- /output_dll.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-fire/shellcode-to-dll/HEAD/output_dll.vcxproj -------------------------------------------------------------------------------- /output_dll.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-fire/shellcode-to-dll/HEAD/output_dll.vcxproj.filters -------------------------------------------------------------------------------- /output_dllDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-fire/shellcode-to-dll/HEAD/output_dllDlg.cpp -------------------------------------------------------------------------------- /output_dllDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-fire/shellcode-to-dll/HEAD/output_dllDlg.h -------------------------------------------------------------------------------- /outputdll.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-fire/shellcode-to-dll/HEAD/outputdll.aps -------------------------------------------------------------------------------- /outputdll.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-fire/shellcode-to-dll/HEAD/outputdll.rc -------------------------------------------------------------------------------- /pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-fire/shellcode-to-dll/HEAD/pch.cpp -------------------------------------------------------------------------------- /pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-fire/shellcode-to-dll/HEAD/pch.h -------------------------------------------------------------------------------- /res/output_dll.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-fire/shellcode-to-dll/HEAD/res/output_dll.ico -------------------------------------------------------------------------------- /res/outputdll.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-fire/shellcode-to-dll/HEAD/res/outputdll.rc2 -------------------------------------------------------------------------------- /res/shellcode.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-fire/shellcode-to-dll/HEAD/res/shellcode.dll -------------------------------------------------------------------------------- /resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-fire/shellcode-to-dll/HEAD/resource.h -------------------------------------------------------------------------------- /targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/k-fire/shellcode-to-dll/HEAD/targetver.h --------------------------------------------------------------------------------