├── Debug ├── EncryptShellCode.exe ├── EncryptShellCode.ilk ├── EncryptShellCode.pdb ├── Framework.pdb ├── RunShellcode.exe ├── RunShellcode.ilk ├── RunShellcode.pdb ├── test.exe ├── test.ilk └── test.pdb ├── EncryptShellCode ├── EncryptShellCode.c ├── EncryptShellCode.vcxproj ├── EncryptShellCode.vcxproj.filters ├── EncryptShellCode.vcxproj.user ├── WjCryptLib_Aes.c └── WjCryptLib_Aes.h ├── Framework ├── Debug │ ├── Framework.Build.CppClean.log │ ├── Framework.log │ ├── Framework.tlog │ │ ├── CL.command.1.tlog │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── Framework.lastbuildstate │ │ ├── link-cvtres.read.1.tlog │ │ ├── link-cvtres.write.1.tlog │ │ ├── link-rc.read.1.tlog │ │ ├── link-rc.write.1.tlog │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ ├── link.write.1.tlog │ │ └── unsuccessfulbuild │ ├── Framework.vcxproj.FileListAbsolute.txt │ ├── Shellcode.obj │ ├── vc142.idb │ └── vc142.pdb ├── Framework.vcxproj ├── Framework.vcxproj.filters ├── Framework.vcxproj.user ├── Release │ ├── Framework.Build.CppClean.log │ ├── Framework.log │ ├── Framework.tlog │ │ ├── CL.command.1.tlog │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── Framework.lastbuildstate │ │ ├── Framework.write.1u.tlog │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ └── link.write.1.tlog │ ├── Framework.vcxproj.FileListAbsolute.txt │ ├── Generate.83b74c6d.tlog │ │ ├── CL.command.1.tlog │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── GenerateShellCode.lastbuildstate │ │ ├── GenerateShellCode.write.1u.tlog │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ └── link.write.1.tlog │ ├── GenerateShellCode.Build.CppClean.log │ ├── Shellcode.obj │ └── vc142.pdb ├── Shellcode.cpp ├── Shellcode.h └── x64 │ └── Debug │ ├── Framework.Build.CppClean.log │ ├── Framework.log │ ├── Framework.tlog │ ├── CL.command.1.tlog │ ├── Framework.lastbuildstate │ └── unsuccessfulbuild │ ├── Framework.vcxproj.FileListAbsolute.txt │ ├── vc142.idb │ └── vc142.pdb ├── FunctionHash ├── FunctionHash.cpp ├── FunctionHash.vcxproj ├── FunctionHash.vcxproj.filters └── FunctionHash.vcxproj.user ├── README.me ├── Release ├── 11.bin ├── 22.bin ├── 22_cs.bin ├── EncryptShellCode.exe ├── EncryptShellCode.iobj ├── EncryptShellCode.ipdb ├── EncryptShellCode.pdb ├── Framework.exe ├── Framework.iobj ├── Framework.ipdb ├── Framework.pdb ├── GenerateShellCode.exe ├── GenerateShellCode.iobj ├── GenerateShellCode.ipdb ├── GenerateShellCode.pdb ├── RunShellcode.exe ├── RunShellcode.iobj ├── RunShellcode.ipdb ├── RunShellcode.pdb ├── ShellCodeFramework.exe ├── ShellCodeFramework.iobj ├── ShellCodeFramework.ipdb ├── ShellCodeFramework.pdb ├── sh.bin ├── test.exe ├── test.iobj ├── test.ipdb └── test.pdb ├── ShellCodeFramework.sln ├── XShellCodeLoaderSysenter ├── Debug │ ├── Syscalls.obj │ ├── SyscallsStubs.obj │ ├── Sysenter.obj │ ├── WjCryptLib_Aes.obj │ ├── XShellCo.af90444f.tlog │ │ ├── CL.command.1.tlog │ │ ├── CL.read.1.tlog │ │ ├── CL.write.1.tlog │ │ ├── Masm.read.1u.tlog │ │ ├── Masm.write.1u.tlog │ │ ├── XShellCodeLoaderSysenter.lastbuildstate │ │ ├── link.command.1.tlog │ │ ├── link.read.1.tlog │ │ └── link.write.1.tlog │ ├── XShellCodeLoaderSysenter.Build.CppClean.log │ ├── XShellCodeLoaderSysenter.log │ ├── XShellCodeLoaderSysenter.vcxproj.FileListAbsolute.txt │ ├── vc142.idb │ └── vc142.pdb ├── Syscalls.c ├── Syscalls.h ├── SyscallsStubs.asm ├── Sysenter.cpp ├── WjCryptLib_Aes.c ├── WjCryptLib_Aes.h ├── XShellCodeLoaderSysenter.vcxproj ├── XShellCodeLoaderSysenter.vcxproj.filters └── XShellCodeLoaderSysenter.vcxproj.user └── XShellCodeLoaderWow64Gate ├── Debug ├── Syscalls.obj ├── SyscallsStubs.obj ├── WjCryptLib_Aes.obj ├── Wow64Gate.obj ├── XShellCo.67cd59f3.tlog │ ├── CL.command.1.tlog │ ├── CL.read.1.tlog │ ├── CL.write.1.tlog │ ├── Masm.read.1u.tlog │ ├── Masm.write.1u.tlog │ ├── XShellCodeLoaderWow64Gate.lastbuildstate │ ├── link.command.1.tlog │ ├── link.read.1.tlog │ └── link.write.1.tlog ├── XShellCodeLoaderWow64Gate.Build.CppClean.log ├── XShellCodeLoaderWow64Gate.log ├── XShellCodeLoaderWow64Gate.vcxproj.FileListAbsolute.txt ├── vc142.idb └── vc142.pdb ├── Syscalls.c ├── Syscalls.h ├── SyscallsStubs.asm ├── WjCryptLib_Aes.c ├── WjCryptLib_Aes.h ├── Wow64Gate.cpp ├── XShellCodeLoaderWow64Gate.vcxproj ├── XShellCodeLoaderWow64Gate.vcxproj.filters └── XShellCodeLoaderWow64Gate.vcxproj.user /Debug/EncryptShellCode.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Debug/EncryptShellCode.exe -------------------------------------------------------------------------------- /Debug/EncryptShellCode.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Debug/EncryptShellCode.ilk -------------------------------------------------------------------------------- /Debug/EncryptShellCode.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Debug/EncryptShellCode.pdb -------------------------------------------------------------------------------- /Debug/Framework.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Debug/Framework.pdb -------------------------------------------------------------------------------- /Debug/RunShellcode.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Debug/RunShellcode.exe -------------------------------------------------------------------------------- /Debug/RunShellcode.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Debug/RunShellcode.ilk -------------------------------------------------------------------------------- /Debug/RunShellcode.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Debug/RunShellcode.pdb -------------------------------------------------------------------------------- /Debug/test.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Debug/test.exe -------------------------------------------------------------------------------- /Debug/test.ilk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Debug/test.ilk -------------------------------------------------------------------------------- /Debug/test.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Debug/test.pdb -------------------------------------------------------------------------------- /EncryptShellCode/EncryptShellCode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/EncryptShellCode/EncryptShellCode.c -------------------------------------------------------------------------------- /EncryptShellCode/EncryptShellCode.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/EncryptShellCode/EncryptShellCode.vcxproj -------------------------------------------------------------------------------- /EncryptShellCode/EncryptShellCode.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/EncryptShellCode/EncryptShellCode.vcxproj.filters -------------------------------------------------------------------------------- /EncryptShellCode/EncryptShellCode.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/EncryptShellCode/EncryptShellCode.vcxproj.user -------------------------------------------------------------------------------- /EncryptShellCode/WjCryptLib_Aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/EncryptShellCode/WjCryptLib_Aes.c -------------------------------------------------------------------------------- /EncryptShellCode/WjCryptLib_Aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/EncryptShellCode/WjCryptLib_Aes.h -------------------------------------------------------------------------------- /Framework/Debug/Framework.Build.CppClean.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Framework/Debug/Framework.Build.CppClean.log -------------------------------------------------------------------------------- /Framework/Debug/Framework.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Framework/Debug/Framework.log -------------------------------------------------------------------------------- /Framework/Debug/Framework.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Framework/Debug/Framework.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /Framework/Debug/Framework.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Framework/Debug/Framework.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /Framework/Debug/Framework.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Framework/Debug/Framework.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /Framework/Debug/Framework.tlog/Framework.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Framework/Debug/Framework.tlog/Framework.lastbuildstate -------------------------------------------------------------------------------- /Framework/Debug/Framework.tlog/link-cvtres.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Framework/Debug/Framework.tlog/link-cvtres.read.1.tlog -------------------------------------------------------------------------------- /Framework/Debug/Framework.tlog/link-cvtres.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Framework/Debug/Framework.tlog/link-cvtres.write.1.tlog -------------------------------------------------------------------------------- /Framework/Debug/Framework.tlog/link-rc.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Framework/Debug/Framework.tlog/link-rc.read.1.tlog -------------------------------------------------------------------------------- /Framework/Debug/Framework.tlog/link-rc.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Framework/Debug/Framework.tlog/link-rc.write.1.tlog -------------------------------------------------------------------------------- /Framework/Debug/Framework.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Framework/Debug/Framework.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /Framework/Debug/Framework.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Framework/Debug/Framework.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /Framework/Debug/Framework.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Framework/Debug/Framework.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /Framework/Debug/Framework.tlog/unsuccessfulbuild: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Framework/Debug/Framework.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Framework/Debug/Shellcode.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Framework/Debug/Shellcode.obj -------------------------------------------------------------------------------- /Framework/Debug/vc142.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Framework/Debug/vc142.idb -------------------------------------------------------------------------------- /Framework/Debug/vc142.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Framework/Debug/vc142.pdb -------------------------------------------------------------------------------- /Framework/Framework.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Framework/Framework.vcxproj -------------------------------------------------------------------------------- /Framework/Framework.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Framework/Framework.vcxproj.filters -------------------------------------------------------------------------------- /Framework/Framework.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Framework/Framework.vcxproj.user -------------------------------------------------------------------------------- /Framework/Release/Framework.Build.CppClean.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Framework/Release/Framework.Build.CppClean.log -------------------------------------------------------------------------------- /Framework/Release/Framework.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Framework/Release/Framework.log -------------------------------------------------------------------------------- /Framework/Release/Framework.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Framework/Release/Framework.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /Framework/Release/Framework.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Framework/Release/Framework.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /Framework/Release/Framework.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Framework/Release/Framework.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /Framework/Release/Framework.tlog/Framework.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Framework/Release/Framework.tlog/Framework.lastbuildstate -------------------------------------------------------------------------------- /Framework/Release/Framework.tlog/Framework.write.1u.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Framework/Release/Framework.tlog/Framework.write.1u.tlog -------------------------------------------------------------------------------- /Framework/Release/Framework.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Framework/Release/Framework.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /Framework/Release/Framework.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Framework/Release/Framework.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /Framework/Release/Framework.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Framework/Release/Framework.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /Framework/Release/Framework.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Framework/Release/Generate.83b74c6d.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Framework/Release/Generate.83b74c6d.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /Framework/Release/Generate.83b74c6d.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Framework/Release/Generate.83b74c6d.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /Framework/Release/Generate.83b74c6d.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Framework/Release/Generate.83b74c6d.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /Framework/Release/Generate.83b74c6d.tlog/GenerateShellCode.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Framework/Release/Generate.83b74c6d.tlog/GenerateShellCode.lastbuildstate -------------------------------------------------------------------------------- /Framework/Release/Generate.83b74c6d.tlog/GenerateShellCode.write.1u.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Framework/Release/Generate.83b74c6d.tlog/GenerateShellCode.write.1u.tlog -------------------------------------------------------------------------------- /Framework/Release/Generate.83b74c6d.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Framework/Release/Generate.83b74c6d.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /Framework/Release/Generate.83b74c6d.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Framework/Release/Generate.83b74c6d.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /Framework/Release/Generate.83b74c6d.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Framework/Release/Generate.83b74c6d.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /Framework/Release/GenerateShellCode.Build.CppClean.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Framework/Release/GenerateShellCode.Build.CppClean.log -------------------------------------------------------------------------------- /Framework/Release/Shellcode.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Framework/Release/Shellcode.obj -------------------------------------------------------------------------------- /Framework/Release/vc142.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Framework/Release/vc142.pdb -------------------------------------------------------------------------------- /Framework/Shellcode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Framework/Shellcode.cpp -------------------------------------------------------------------------------- /Framework/Shellcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Framework/Shellcode.h -------------------------------------------------------------------------------- /Framework/x64/Debug/Framework.Build.CppClean.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Framework/x64/Debug/Framework.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Framework/x64/Debug/Framework.log -------------------------------------------------------------------------------- /Framework/x64/Debug/Framework.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Framework/x64/Debug/Framework.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /Framework/x64/Debug/Framework.tlog/Framework.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Framework/x64/Debug/Framework.tlog/Framework.lastbuildstate -------------------------------------------------------------------------------- /Framework/x64/Debug/Framework.tlog/unsuccessfulbuild: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Framework/x64/Debug/Framework.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Framework/x64/Debug/vc142.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Framework/x64/Debug/vc142.idb -------------------------------------------------------------------------------- /Framework/x64/Debug/vc142.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Framework/x64/Debug/vc142.pdb -------------------------------------------------------------------------------- /FunctionHash/FunctionHash.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/FunctionHash/FunctionHash.cpp -------------------------------------------------------------------------------- /FunctionHash/FunctionHash.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/FunctionHash/FunctionHash.vcxproj -------------------------------------------------------------------------------- /FunctionHash/FunctionHash.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/FunctionHash/FunctionHash.vcxproj.filters -------------------------------------------------------------------------------- /FunctionHash/FunctionHash.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/FunctionHash/FunctionHash.vcxproj.user -------------------------------------------------------------------------------- /README.me: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/README.me -------------------------------------------------------------------------------- /Release/11.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Release/11.bin -------------------------------------------------------------------------------- /Release/22.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Release/22.bin -------------------------------------------------------------------------------- /Release/22_cs.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Release/22_cs.bin -------------------------------------------------------------------------------- /Release/EncryptShellCode.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Release/EncryptShellCode.exe -------------------------------------------------------------------------------- /Release/EncryptShellCode.iobj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Release/EncryptShellCode.iobj -------------------------------------------------------------------------------- /Release/EncryptShellCode.ipdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Release/EncryptShellCode.ipdb -------------------------------------------------------------------------------- /Release/EncryptShellCode.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Release/EncryptShellCode.pdb -------------------------------------------------------------------------------- /Release/Framework.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Release/Framework.exe -------------------------------------------------------------------------------- /Release/Framework.iobj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Release/Framework.iobj -------------------------------------------------------------------------------- /Release/Framework.ipdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Release/Framework.ipdb -------------------------------------------------------------------------------- /Release/Framework.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Release/Framework.pdb -------------------------------------------------------------------------------- /Release/GenerateShellCode.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Release/GenerateShellCode.exe -------------------------------------------------------------------------------- /Release/GenerateShellCode.iobj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Release/GenerateShellCode.iobj -------------------------------------------------------------------------------- /Release/GenerateShellCode.ipdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Release/GenerateShellCode.ipdb -------------------------------------------------------------------------------- /Release/GenerateShellCode.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Release/GenerateShellCode.pdb -------------------------------------------------------------------------------- /Release/RunShellcode.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Release/RunShellcode.exe -------------------------------------------------------------------------------- /Release/RunShellcode.iobj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Release/RunShellcode.iobj -------------------------------------------------------------------------------- /Release/RunShellcode.ipdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Release/RunShellcode.ipdb -------------------------------------------------------------------------------- /Release/RunShellcode.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Release/RunShellcode.pdb -------------------------------------------------------------------------------- /Release/ShellCodeFramework.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Release/ShellCodeFramework.exe -------------------------------------------------------------------------------- /Release/ShellCodeFramework.iobj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Release/ShellCodeFramework.iobj -------------------------------------------------------------------------------- /Release/ShellCodeFramework.ipdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Release/ShellCodeFramework.ipdb -------------------------------------------------------------------------------- /Release/ShellCodeFramework.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Release/ShellCodeFramework.pdb -------------------------------------------------------------------------------- /Release/sh.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Release/sh.bin -------------------------------------------------------------------------------- /Release/test.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Release/test.exe -------------------------------------------------------------------------------- /Release/test.iobj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Release/test.iobj -------------------------------------------------------------------------------- /Release/test.ipdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Release/test.ipdb -------------------------------------------------------------------------------- /Release/test.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/Release/test.pdb -------------------------------------------------------------------------------- /ShellCodeFramework.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/ShellCodeFramework.sln -------------------------------------------------------------------------------- /XShellCodeLoaderSysenter/Debug/Syscalls.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/XShellCodeLoaderSysenter/Debug/Syscalls.obj -------------------------------------------------------------------------------- /XShellCodeLoaderSysenter/Debug/SyscallsStubs.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/XShellCodeLoaderSysenter/Debug/SyscallsStubs.obj -------------------------------------------------------------------------------- /XShellCodeLoaderSysenter/Debug/Sysenter.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/XShellCodeLoaderSysenter/Debug/Sysenter.obj -------------------------------------------------------------------------------- /XShellCodeLoaderSysenter/Debug/WjCryptLib_Aes.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/XShellCodeLoaderSysenter/Debug/WjCryptLib_Aes.obj -------------------------------------------------------------------------------- /XShellCodeLoaderSysenter/Debug/XShellCo.af90444f.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/XShellCodeLoaderSysenter/Debug/XShellCo.af90444f.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /XShellCodeLoaderSysenter/Debug/XShellCo.af90444f.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/XShellCodeLoaderSysenter/Debug/XShellCo.af90444f.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /XShellCodeLoaderSysenter/Debug/XShellCo.af90444f.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/XShellCodeLoaderSysenter/Debug/XShellCo.af90444f.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /XShellCodeLoaderSysenter/Debug/XShellCo.af90444f.tlog/Masm.read.1u.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/XShellCodeLoaderSysenter/Debug/XShellCo.af90444f.tlog/Masm.read.1u.tlog -------------------------------------------------------------------------------- /XShellCodeLoaderSysenter/Debug/XShellCo.af90444f.tlog/Masm.write.1u.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/XShellCodeLoaderSysenter/Debug/XShellCo.af90444f.tlog/Masm.write.1u.tlog -------------------------------------------------------------------------------- /XShellCodeLoaderSysenter/Debug/XShellCo.af90444f.tlog/XShellCodeLoaderSysenter.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/XShellCodeLoaderSysenter/Debug/XShellCo.af90444f.tlog/XShellCodeLoaderSysenter.lastbuildstate -------------------------------------------------------------------------------- /XShellCodeLoaderSysenter/Debug/XShellCo.af90444f.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/XShellCodeLoaderSysenter/Debug/XShellCo.af90444f.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /XShellCodeLoaderSysenter/Debug/XShellCo.af90444f.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/XShellCodeLoaderSysenter/Debug/XShellCo.af90444f.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /XShellCodeLoaderSysenter/Debug/XShellCo.af90444f.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/XShellCodeLoaderSysenter/Debug/XShellCo.af90444f.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /XShellCodeLoaderSysenter/Debug/XShellCodeLoaderSysenter.Build.CppClean.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XShellCodeLoaderSysenter/Debug/XShellCodeLoaderSysenter.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/XShellCodeLoaderSysenter/Debug/XShellCodeLoaderSysenter.log -------------------------------------------------------------------------------- /XShellCodeLoaderSysenter/Debug/XShellCodeLoaderSysenter.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XShellCodeLoaderSysenter/Debug/vc142.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/XShellCodeLoaderSysenter/Debug/vc142.idb -------------------------------------------------------------------------------- /XShellCodeLoaderSysenter/Debug/vc142.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/XShellCodeLoaderSysenter/Debug/vc142.pdb -------------------------------------------------------------------------------- /XShellCodeLoaderSysenter/Syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/XShellCodeLoaderSysenter/Syscalls.c -------------------------------------------------------------------------------- /XShellCodeLoaderSysenter/Syscalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/XShellCodeLoaderSysenter/Syscalls.h -------------------------------------------------------------------------------- /XShellCodeLoaderSysenter/SyscallsStubs.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/XShellCodeLoaderSysenter/SyscallsStubs.asm -------------------------------------------------------------------------------- /XShellCodeLoaderSysenter/Sysenter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/XShellCodeLoaderSysenter/Sysenter.cpp -------------------------------------------------------------------------------- /XShellCodeLoaderSysenter/WjCryptLib_Aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/XShellCodeLoaderSysenter/WjCryptLib_Aes.c -------------------------------------------------------------------------------- /XShellCodeLoaderSysenter/WjCryptLib_Aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/XShellCodeLoaderSysenter/WjCryptLib_Aes.h -------------------------------------------------------------------------------- /XShellCodeLoaderSysenter/XShellCodeLoaderSysenter.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/XShellCodeLoaderSysenter/XShellCodeLoaderSysenter.vcxproj -------------------------------------------------------------------------------- /XShellCodeLoaderSysenter/XShellCodeLoaderSysenter.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/XShellCodeLoaderSysenter/XShellCodeLoaderSysenter.vcxproj.filters -------------------------------------------------------------------------------- /XShellCodeLoaderSysenter/XShellCodeLoaderSysenter.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/XShellCodeLoaderSysenter/XShellCodeLoaderSysenter.vcxproj.user -------------------------------------------------------------------------------- /XShellCodeLoaderWow64Gate/Debug/Syscalls.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/XShellCodeLoaderWow64Gate/Debug/Syscalls.obj -------------------------------------------------------------------------------- /XShellCodeLoaderWow64Gate/Debug/SyscallsStubs.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/XShellCodeLoaderWow64Gate/Debug/SyscallsStubs.obj -------------------------------------------------------------------------------- /XShellCodeLoaderWow64Gate/Debug/WjCryptLib_Aes.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/XShellCodeLoaderWow64Gate/Debug/WjCryptLib_Aes.obj -------------------------------------------------------------------------------- /XShellCodeLoaderWow64Gate/Debug/Wow64Gate.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/XShellCodeLoaderWow64Gate/Debug/Wow64Gate.obj -------------------------------------------------------------------------------- /XShellCodeLoaderWow64Gate/Debug/XShellCo.67cd59f3.tlog/CL.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/XShellCodeLoaderWow64Gate/Debug/XShellCo.67cd59f3.tlog/CL.command.1.tlog -------------------------------------------------------------------------------- /XShellCodeLoaderWow64Gate/Debug/XShellCo.67cd59f3.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/XShellCodeLoaderWow64Gate/Debug/XShellCo.67cd59f3.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /XShellCodeLoaderWow64Gate/Debug/XShellCo.67cd59f3.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/XShellCodeLoaderWow64Gate/Debug/XShellCo.67cd59f3.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /XShellCodeLoaderWow64Gate/Debug/XShellCo.67cd59f3.tlog/Masm.read.1u.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/XShellCodeLoaderWow64Gate/Debug/XShellCo.67cd59f3.tlog/Masm.read.1u.tlog -------------------------------------------------------------------------------- /XShellCodeLoaderWow64Gate/Debug/XShellCo.67cd59f3.tlog/Masm.write.1u.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/XShellCodeLoaderWow64Gate/Debug/XShellCo.67cd59f3.tlog/Masm.write.1u.tlog -------------------------------------------------------------------------------- /XShellCodeLoaderWow64Gate/Debug/XShellCo.67cd59f3.tlog/XShellCodeLoaderWow64Gate.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/XShellCodeLoaderWow64Gate/Debug/XShellCo.67cd59f3.tlog/XShellCodeLoaderWow64Gate.lastbuildstate -------------------------------------------------------------------------------- /XShellCodeLoaderWow64Gate/Debug/XShellCo.67cd59f3.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/XShellCodeLoaderWow64Gate/Debug/XShellCo.67cd59f3.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /XShellCodeLoaderWow64Gate/Debug/XShellCo.67cd59f3.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/XShellCodeLoaderWow64Gate/Debug/XShellCo.67cd59f3.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /XShellCodeLoaderWow64Gate/Debug/XShellCo.67cd59f3.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/XShellCodeLoaderWow64Gate/Debug/XShellCo.67cd59f3.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /XShellCodeLoaderWow64Gate/Debug/XShellCodeLoaderWow64Gate.Build.CppClean.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XShellCodeLoaderWow64Gate/Debug/XShellCodeLoaderWow64Gate.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/XShellCodeLoaderWow64Gate/Debug/XShellCodeLoaderWow64Gate.log -------------------------------------------------------------------------------- /XShellCodeLoaderWow64Gate/Debug/XShellCodeLoaderWow64Gate.vcxproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XShellCodeLoaderWow64Gate/Debug/vc142.idb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/XShellCodeLoaderWow64Gate/Debug/vc142.idb -------------------------------------------------------------------------------- /XShellCodeLoaderWow64Gate/Debug/vc142.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/XShellCodeLoaderWow64Gate/Debug/vc142.pdb -------------------------------------------------------------------------------- /XShellCodeLoaderWow64Gate/Syscalls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/XShellCodeLoaderWow64Gate/Syscalls.c -------------------------------------------------------------------------------- /XShellCodeLoaderWow64Gate/Syscalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/XShellCodeLoaderWow64Gate/Syscalls.h -------------------------------------------------------------------------------- /XShellCodeLoaderWow64Gate/SyscallsStubs.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/XShellCodeLoaderWow64Gate/SyscallsStubs.asm -------------------------------------------------------------------------------- /XShellCodeLoaderWow64Gate/WjCryptLib_Aes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/XShellCodeLoaderWow64Gate/WjCryptLib_Aes.c -------------------------------------------------------------------------------- /XShellCodeLoaderWow64Gate/WjCryptLib_Aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/XShellCodeLoaderWow64Gate/WjCryptLib_Aes.h -------------------------------------------------------------------------------- /XShellCodeLoaderWow64Gate/Wow64Gate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/XShellCodeLoaderWow64Gate/Wow64Gate.cpp -------------------------------------------------------------------------------- /XShellCodeLoaderWow64Gate/XShellCodeLoaderWow64Gate.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/XShellCodeLoaderWow64Gate/XShellCodeLoaderWow64Gate.vcxproj -------------------------------------------------------------------------------- /XShellCodeLoaderWow64Gate/XShellCodeLoaderWow64Gate.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/XShellCodeLoaderWow64Gate/XShellCodeLoaderWow64Gate.vcxproj.filters -------------------------------------------------------------------------------- /XShellCodeLoaderWow64Gate/XShellCodeLoaderWow64Gate.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mai1zhi2/ShellCodeFramework/HEAD/XShellCodeLoaderWow64Gate/XShellCodeLoaderWow64Gate.vcxproj.user --------------------------------------------------------------------------------