├── .gitignore ├── LICENSE ├── README.md ├── ShellcodeLoader ├── ShellCodeLoader.h ├── ShellcodeLoader.c ├── ShellcodeLoader.vcxproj ├── ShellcodeLoader.vcxproj.filters ├── Syscalls.asm ├── WinApiReImplementations.c ├── WinApiReImplementations.h └── shellcode.h ├── ShellcodeLoader_Indirect_Syscalls.sln └── create_api_hashes.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcf80/ShellCodeLoader_Indirect_Syscalls/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcf80/ShellCodeLoader_Indirect_Syscalls/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcf80/ShellCodeLoader_Indirect_Syscalls/HEAD/README.md -------------------------------------------------------------------------------- /ShellcodeLoader/ShellCodeLoader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcf80/ShellCodeLoader_Indirect_Syscalls/HEAD/ShellcodeLoader/ShellCodeLoader.h -------------------------------------------------------------------------------- /ShellcodeLoader/ShellcodeLoader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcf80/ShellCodeLoader_Indirect_Syscalls/HEAD/ShellcodeLoader/ShellcodeLoader.c -------------------------------------------------------------------------------- /ShellcodeLoader/ShellcodeLoader.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcf80/ShellCodeLoader_Indirect_Syscalls/HEAD/ShellcodeLoader/ShellcodeLoader.vcxproj -------------------------------------------------------------------------------- /ShellcodeLoader/ShellcodeLoader.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcf80/ShellCodeLoader_Indirect_Syscalls/HEAD/ShellcodeLoader/ShellcodeLoader.vcxproj.filters -------------------------------------------------------------------------------- /ShellcodeLoader/Syscalls.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcf80/ShellCodeLoader_Indirect_Syscalls/HEAD/ShellcodeLoader/Syscalls.asm -------------------------------------------------------------------------------- /ShellcodeLoader/WinApiReImplementations.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcf80/ShellCodeLoader_Indirect_Syscalls/HEAD/ShellcodeLoader/WinApiReImplementations.c -------------------------------------------------------------------------------- /ShellcodeLoader/WinApiReImplementations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcf80/ShellCodeLoader_Indirect_Syscalls/HEAD/ShellcodeLoader/WinApiReImplementations.h -------------------------------------------------------------------------------- /ShellcodeLoader/shellcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcf80/ShellCodeLoader_Indirect_Syscalls/HEAD/ShellcodeLoader/shellcode.h -------------------------------------------------------------------------------- /ShellcodeLoader_Indirect_Syscalls.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcf80/ShellCodeLoader_Indirect_Syscalls/HEAD/ShellcodeLoader_Indirect_Syscalls.sln -------------------------------------------------------------------------------- /create_api_hashes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xcf80/ShellCodeLoader_Indirect_Syscalls/HEAD/create_api_hashes.py --------------------------------------------------------------------------------