├── .gitignore ├── DumpShellcode.c ├── DumpShellcode.exe ├── HashCalculator.cpp ├── HashCalculator.exe ├── README.md ├── ShellcodeOfDeath.c ├── ShellcodeOfDeath.exe ├── ShellcodeOfDeath.s ├── ShellcodeOfDeathMetasploitShikataGaNaiEncoded.shellcode ├── ShellcodeOfDeathMetasploitUnEncoded.shellcode ├── ShellcodeOfDeathUnEncoded.shellcode ├── ShellcodeOfDeathXOREncoded.shellcode ├── ShellcodeTestMetasploitShikataGaNaiEncoded.c ├── ShellcodeTestMetasploitShikataGaNaiEncoded.exe ├── ShellcodeTestMetasploitUnEncoded.c ├── ShellcodeTestMetasploitUnEncoded.exe ├── ShellcodeTestUnEncoded.c ├── ShellcodeTestUnEncoded.exe ├── ShellcodeTestXOREncoded.c ├── ShellcodeTestXOREncoded.exe ├── XORDecoder.nasm ├── XOREncodeDecode.py └── shellcode_of_death.rb /.gitignore: -------------------------------------------------------------------------------- 1 | /.project 2 | -------------------------------------------------------------------------------- /DumpShellcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacksysteam/ShellcodeOfDeath/HEAD/DumpShellcode.c -------------------------------------------------------------------------------- /DumpShellcode.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacksysteam/ShellcodeOfDeath/HEAD/DumpShellcode.exe -------------------------------------------------------------------------------- /HashCalculator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacksysteam/ShellcodeOfDeath/HEAD/HashCalculator.cpp -------------------------------------------------------------------------------- /HashCalculator.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacksysteam/ShellcodeOfDeath/HEAD/HashCalculator.exe -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacksysteam/ShellcodeOfDeath/HEAD/README.md -------------------------------------------------------------------------------- /ShellcodeOfDeath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacksysteam/ShellcodeOfDeath/HEAD/ShellcodeOfDeath.c -------------------------------------------------------------------------------- /ShellcodeOfDeath.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacksysteam/ShellcodeOfDeath/HEAD/ShellcodeOfDeath.exe -------------------------------------------------------------------------------- /ShellcodeOfDeath.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacksysteam/ShellcodeOfDeath/HEAD/ShellcodeOfDeath.s -------------------------------------------------------------------------------- /ShellcodeOfDeathMetasploitShikataGaNaiEncoded.shellcode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacksysteam/ShellcodeOfDeath/HEAD/ShellcodeOfDeathMetasploitShikataGaNaiEncoded.shellcode -------------------------------------------------------------------------------- /ShellcodeOfDeathMetasploitUnEncoded.shellcode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacksysteam/ShellcodeOfDeath/HEAD/ShellcodeOfDeathMetasploitUnEncoded.shellcode -------------------------------------------------------------------------------- /ShellcodeOfDeathUnEncoded.shellcode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacksysteam/ShellcodeOfDeath/HEAD/ShellcodeOfDeathUnEncoded.shellcode -------------------------------------------------------------------------------- /ShellcodeOfDeathXOREncoded.shellcode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacksysteam/ShellcodeOfDeath/HEAD/ShellcodeOfDeathXOREncoded.shellcode -------------------------------------------------------------------------------- /ShellcodeTestMetasploitShikataGaNaiEncoded.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacksysteam/ShellcodeOfDeath/HEAD/ShellcodeTestMetasploitShikataGaNaiEncoded.c -------------------------------------------------------------------------------- /ShellcodeTestMetasploitShikataGaNaiEncoded.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacksysteam/ShellcodeOfDeath/HEAD/ShellcodeTestMetasploitShikataGaNaiEncoded.exe -------------------------------------------------------------------------------- /ShellcodeTestMetasploitUnEncoded.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacksysteam/ShellcodeOfDeath/HEAD/ShellcodeTestMetasploitUnEncoded.c -------------------------------------------------------------------------------- /ShellcodeTestMetasploitUnEncoded.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacksysteam/ShellcodeOfDeath/HEAD/ShellcodeTestMetasploitUnEncoded.exe -------------------------------------------------------------------------------- /ShellcodeTestUnEncoded.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacksysteam/ShellcodeOfDeath/HEAD/ShellcodeTestUnEncoded.c -------------------------------------------------------------------------------- /ShellcodeTestUnEncoded.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacksysteam/ShellcodeOfDeath/HEAD/ShellcodeTestUnEncoded.exe -------------------------------------------------------------------------------- /ShellcodeTestXOREncoded.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacksysteam/ShellcodeOfDeath/HEAD/ShellcodeTestXOREncoded.c -------------------------------------------------------------------------------- /ShellcodeTestXOREncoded.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacksysteam/ShellcodeOfDeath/HEAD/ShellcodeTestXOREncoded.exe -------------------------------------------------------------------------------- /XORDecoder.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacksysteam/ShellcodeOfDeath/HEAD/XORDecoder.nasm -------------------------------------------------------------------------------- /XOREncodeDecode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacksysteam/ShellcodeOfDeath/HEAD/XOREncodeDecode.py -------------------------------------------------------------------------------- /shellcode_of_death.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hacksysteam/ShellcodeOfDeath/HEAD/shellcode_of_death.rb --------------------------------------------------------------------------------