├── README.md ├── ShellCode ├── FunctionOrder.txt ├── MYLZ4.cpp ├── MYLZ4.h ├── MY_API.cpp ├── ShellCode.cpp ├── ShellCode.sln ├── ShellCode.vcxproj ├── ShellCode.vcxproj.filters ├── ShellCode.vcxproj.user ├── TOOL.h ├── To64.cpp ├── To64.h ├── X64.asm ├── X86.asm ├── lz4.cpp ├── lz4.h ├── lz4压缩使用示例.cpp ├── mpafile └── x64 │ └── Debug │ ├── ShellCodeBuild.exe │ └── ShellCodeBuild.pdb └── ShellCodeBuild ├── 1.bin ├── C_ToShell.cpp ├── C_ToShell.h ├── Debug ├── ShellCodeBuild.exe.recipe └── ShellCodeBuild.vcxproj.FileListAbsolute.txt ├── PE_TOOL.cpp ├── PE_TOOL.h ├── ShellCodeBuild.cpp ├── ShellCodeBuild.vcxproj ├── ShellCodeBuild.vcxproj.filters ├── ShellCodeBuild.vcxproj.user ├── ShellLoader.h ├── lz4.cpp ├── lz4.h └── x64 └── Debug ├── C_ToShell.obj ├── PE_TOOL.obj ├── ShellCodeBuild.exe.recipe ├── ShellCodeBuild.ilk ├── ShellCodeBuild.log ├── ShellCodeBuild.obj ├── ShellCodeBuild.tlog ├── CL.command.1.tlog ├── CL.read.1.tlog ├── CL.write.1.tlog ├── ShellCodeBuild.lastbuildstate ├── link.command.1.tlog ├── link.read.1.tlog └── link.write.1.tlog ├── ShellCodeBuild.vcxproj.FileListAbsolute.txt ├── lz4.obj ├── vc142.idb └── vc142.pdb /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irohaneABC/ShellCodeBuildandloadexe/HEAD/README.md -------------------------------------------------------------------------------- /ShellCode/FunctionOrder.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irohaneABC/ShellCodeBuildandloadexe/HEAD/ShellCode/FunctionOrder.txt -------------------------------------------------------------------------------- /ShellCode/MYLZ4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irohaneABC/ShellCodeBuildandloadexe/HEAD/ShellCode/MYLZ4.cpp -------------------------------------------------------------------------------- /ShellCode/MYLZ4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irohaneABC/ShellCodeBuildandloadexe/HEAD/ShellCode/MYLZ4.h -------------------------------------------------------------------------------- /ShellCode/MY_API.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irohaneABC/ShellCodeBuildandloadexe/HEAD/ShellCode/MY_API.cpp -------------------------------------------------------------------------------- /ShellCode/ShellCode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irohaneABC/ShellCodeBuildandloadexe/HEAD/ShellCode/ShellCode.cpp -------------------------------------------------------------------------------- /ShellCode/ShellCode.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irohaneABC/ShellCodeBuildandloadexe/HEAD/ShellCode/ShellCode.sln -------------------------------------------------------------------------------- /ShellCode/ShellCode.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irohaneABC/ShellCodeBuildandloadexe/HEAD/ShellCode/ShellCode.vcxproj -------------------------------------------------------------------------------- /ShellCode/ShellCode.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irohaneABC/ShellCodeBuildandloadexe/HEAD/ShellCode/ShellCode.vcxproj.filters -------------------------------------------------------------------------------- /ShellCode/ShellCode.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irohaneABC/ShellCodeBuildandloadexe/HEAD/ShellCode/ShellCode.vcxproj.user -------------------------------------------------------------------------------- /ShellCode/TOOL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irohaneABC/ShellCodeBuildandloadexe/HEAD/ShellCode/TOOL.h -------------------------------------------------------------------------------- /ShellCode/To64.cpp: -------------------------------------------------------------------------------- 1 | #include "To64.h" 2 | -------------------------------------------------------------------------------- /ShellCode/To64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irohaneABC/ShellCodeBuildandloadexe/HEAD/ShellCode/To64.h -------------------------------------------------------------------------------- /ShellCode/X64.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irohaneABC/ShellCodeBuildandloadexe/HEAD/ShellCode/X64.asm -------------------------------------------------------------------------------- /ShellCode/X86.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irohaneABC/ShellCodeBuildandloadexe/HEAD/ShellCode/X86.asm -------------------------------------------------------------------------------- /ShellCode/lz4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irohaneABC/ShellCodeBuildandloadexe/HEAD/ShellCode/lz4.cpp -------------------------------------------------------------------------------- /ShellCode/lz4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irohaneABC/ShellCodeBuildandloadexe/HEAD/ShellCode/lz4.h -------------------------------------------------------------------------------- /ShellCode/lz4压缩使用示例.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irohaneABC/ShellCodeBuildandloadexe/HEAD/ShellCode/lz4压缩使用示例.cpp -------------------------------------------------------------------------------- /ShellCode/mpafile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irohaneABC/ShellCodeBuildandloadexe/HEAD/ShellCode/mpafile -------------------------------------------------------------------------------- /ShellCode/x64/Debug/ShellCodeBuild.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irohaneABC/ShellCodeBuildandloadexe/HEAD/ShellCode/x64/Debug/ShellCodeBuild.exe -------------------------------------------------------------------------------- /ShellCode/x64/Debug/ShellCodeBuild.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irohaneABC/ShellCodeBuildandloadexe/HEAD/ShellCode/x64/Debug/ShellCodeBuild.pdb -------------------------------------------------------------------------------- /ShellCodeBuild/1.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irohaneABC/ShellCodeBuildandloadexe/HEAD/ShellCodeBuild/1.bin -------------------------------------------------------------------------------- /ShellCodeBuild/C_ToShell.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irohaneABC/ShellCodeBuildandloadexe/HEAD/ShellCodeBuild/C_ToShell.cpp -------------------------------------------------------------------------------- /ShellCodeBuild/C_ToShell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irohaneABC/ShellCodeBuildandloadexe/HEAD/ShellCodeBuild/C_ToShell.h -------------------------------------------------------------------------------- /ShellCodeBuild/Debug/ShellCodeBuild.exe.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irohaneABC/ShellCodeBuildandloadexe/HEAD/ShellCodeBuild/Debug/ShellCodeBuild.exe.recipe -------------------------------------------------------------------------------- /ShellCodeBuild/Debug/ShellCodeBuild.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ShellCodeBuild/PE_TOOL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irohaneABC/ShellCodeBuildandloadexe/HEAD/ShellCodeBuild/PE_TOOL.cpp -------------------------------------------------------------------------------- /ShellCodeBuild/PE_TOOL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irohaneABC/ShellCodeBuildandloadexe/HEAD/ShellCodeBuild/PE_TOOL.h -------------------------------------------------------------------------------- /ShellCodeBuild/ShellCodeBuild.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irohaneABC/ShellCodeBuildandloadexe/HEAD/ShellCodeBuild/ShellCodeBuild.cpp -------------------------------------------------------------------------------- /ShellCodeBuild/ShellCodeBuild.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irohaneABC/ShellCodeBuildandloadexe/HEAD/ShellCodeBuild/ShellCodeBuild.vcxproj -------------------------------------------------------------------------------- /ShellCodeBuild/ShellCodeBuild.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irohaneABC/ShellCodeBuildandloadexe/HEAD/ShellCodeBuild/ShellCodeBuild.vcxproj.filters -------------------------------------------------------------------------------- /ShellCodeBuild/ShellCodeBuild.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irohaneABC/ShellCodeBuildandloadexe/HEAD/ShellCodeBuild/ShellCodeBuild.vcxproj.user -------------------------------------------------------------------------------- /ShellCodeBuild/ShellLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irohaneABC/ShellCodeBuildandloadexe/HEAD/ShellCodeBuild/ShellLoader.h -------------------------------------------------------------------------------- /ShellCodeBuild/lz4.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irohaneABC/ShellCodeBuildandloadexe/HEAD/ShellCodeBuild/lz4.cpp -------------------------------------------------------------------------------- /ShellCodeBuild/lz4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irohaneABC/ShellCodeBuildandloadexe/HEAD/ShellCodeBuild/lz4.h -------------------------------------------------------------------------------- /ShellCodeBuild/x64/Debug/C_ToShell.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irohaneABC/ShellCodeBuildandloadexe/HEAD/ShellCodeBuild/x64/Debug/C_ToShell.obj -------------------------------------------------------------------------------- /ShellCodeBuild/x64/Debug/PE_TOOL.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irohaneABC/ShellCodeBuildandloadexe/HEAD/ShellCodeBuild/x64/Debug/PE_TOOL.obj -------------------------------------------------------------------------------- /ShellCodeBuild/x64/Debug/ShellCodeBuild.exe.recipe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irohaneABC/ShellCodeBuildandloadexe/HEAD/ShellCodeBuild/x64/Debug/ShellCodeBuild.exe.recipe -------------------------------------------------------------------------------- /ShellCodeBuild/x64/Debug/ShellCodeBuild.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irohaneABC/ShellCodeBuildandloadexe/HEAD/ShellCodeBuild/x64/Debug/ShellCodeBuild.ilk -------------------------------------------------------------------------------- /ShellCodeBuild/x64/Debug/ShellCodeBuild.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irohaneABC/ShellCodeBuildandloadexe/HEAD/ShellCodeBuild/x64/Debug/ShellCodeBuild.log -------------------------------------------------------------------------------- /ShellCodeBuild/x64/Debug/ShellCodeBuild.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irohaneABC/ShellCodeBuildandloadexe/HEAD/ShellCodeBuild/x64/Debug/ShellCodeBuild.obj -------------------------------------------------------------------------------- /ShellCodeBuild/x64/Debug/ShellCodeBuild.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irohaneABC/ShellCodeBuildandloadexe/HEAD/ShellCodeBuild/x64/Debug/ShellCodeBuild.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /ShellCodeBuild/x64/Debug/ShellCodeBuild.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irohaneABC/ShellCodeBuildandloadexe/HEAD/ShellCodeBuild/x64/Debug/ShellCodeBuild.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /ShellCodeBuild/x64/Debug/ShellCodeBuild.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irohaneABC/ShellCodeBuildandloadexe/HEAD/ShellCodeBuild/x64/Debug/ShellCodeBuild.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /ShellCodeBuild/x64/Debug/ShellCodeBuild.tlog/ShellCodeBuild.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irohaneABC/ShellCodeBuildandloadexe/HEAD/ShellCodeBuild/x64/Debug/ShellCodeBuild.tlog/ShellCodeBuild.lastbuildstate -------------------------------------------------------------------------------- /ShellCodeBuild/x64/Debug/ShellCodeBuild.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irohaneABC/ShellCodeBuildandloadexe/HEAD/ShellCodeBuild/x64/Debug/ShellCodeBuild.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /ShellCodeBuild/x64/Debug/ShellCodeBuild.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irohaneABC/ShellCodeBuildandloadexe/HEAD/ShellCodeBuild/x64/Debug/ShellCodeBuild.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /ShellCodeBuild/x64/Debug/ShellCodeBuild.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irohaneABC/ShellCodeBuildandloadexe/HEAD/ShellCodeBuild/x64/Debug/ShellCodeBuild.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /ShellCodeBuild/x64/Debug/ShellCodeBuild.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ShellCodeBuild/x64/Debug/lz4.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irohaneABC/ShellCodeBuildandloadexe/HEAD/ShellCodeBuild/x64/Debug/lz4.obj -------------------------------------------------------------------------------- /ShellCodeBuild/x64/Debug/vc142.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irohaneABC/ShellCodeBuildandloadexe/HEAD/ShellCodeBuild/x64/Debug/vc142.idb -------------------------------------------------------------------------------- /ShellCodeBuild/x64/Debug/vc142.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/irohaneABC/ShellCodeBuildandloadexe/HEAD/ShellCodeBuild/x64/Debug/vc142.pdb --------------------------------------------------------------------------------