├── 1_bind_shell ├── bind_shell.nasm ├── compile.sh └── shellcode.c ├── 2_reverse_shell ├── compile.sh ├── reverse_shell.nasm └── shellcode.c ├── 3_eggHunting ├── compile.sh ├── egg_hunter.nasm └── poc.c ├── 4_customEncoder ├── compile.sh ├── subBytes-decoder.nasm └── subBytes-encoder.py ├── 5_analyzeMSF ├── msfCommands.txt └── shellcode.c ├── 6_polymorph ├── chmod.nasm ├── chmodMorphed.nasm ├── compile.sh ├── ping.nasm ├── pingMorph.nasm ├── shell.nasm └── shellMorphed.nasm ├── 7_customCrypter ├── decrypt.py ├── encrypt.py └── shellcode.c └── README.md /1_bind_shell/bind_shell.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanseSecure/SLAE/HEAD/1_bind_shell/bind_shell.nasm -------------------------------------------------------------------------------- /1_bind_shell/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanseSecure/SLAE/HEAD/1_bind_shell/compile.sh -------------------------------------------------------------------------------- /1_bind_shell/shellcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanseSecure/SLAE/HEAD/1_bind_shell/shellcode.c -------------------------------------------------------------------------------- /2_reverse_shell/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanseSecure/SLAE/HEAD/2_reverse_shell/compile.sh -------------------------------------------------------------------------------- /2_reverse_shell/reverse_shell.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanseSecure/SLAE/HEAD/2_reverse_shell/reverse_shell.nasm -------------------------------------------------------------------------------- /2_reverse_shell/shellcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanseSecure/SLAE/HEAD/2_reverse_shell/shellcode.c -------------------------------------------------------------------------------- /3_eggHunting/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanseSecure/SLAE/HEAD/3_eggHunting/compile.sh -------------------------------------------------------------------------------- /3_eggHunting/egg_hunter.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanseSecure/SLAE/HEAD/3_eggHunting/egg_hunter.nasm -------------------------------------------------------------------------------- /3_eggHunting/poc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanseSecure/SLAE/HEAD/3_eggHunting/poc.c -------------------------------------------------------------------------------- /4_customEncoder/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanseSecure/SLAE/HEAD/4_customEncoder/compile.sh -------------------------------------------------------------------------------- /4_customEncoder/subBytes-decoder.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanseSecure/SLAE/HEAD/4_customEncoder/subBytes-decoder.nasm -------------------------------------------------------------------------------- /4_customEncoder/subBytes-encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanseSecure/SLAE/HEAD/4_customEncoder/subBytes-encoder.py -------------------------------------------------------------------------------- /5_analyzeMSF/msfCommands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanseSecure/SLAE/HEAD/5_analyzeMSF/msfCommands.txt -------------------------------------------------------------------------------- /5_analyzeMSF/shellcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanseSecure/SLAE/HEAD/5_analyzeMSF/shellcode.c -------------------------------------------------------------------------------- /6_polymorph/chmod.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanseSecure/SLAE/HEAD/6_polymorph/chmod.nasm -------------------------------------------------------------------------------- /6_polymorph/chmodMorphed.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanseSecure/SLAE/HEAD/6_polymorph/chmodMorphed.nasm -------------------------------------------------------------------------------- /6_polymorph/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanseSecure/SLAE/HEAD/6_polymorph/compile.sh -------------------------------------------------------------------------------- /6_polymorph/ping.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanseSecure/SLAE/HEAD/6_polymorph/ping.nasm -------------------------------------------------------------------------------- /6_polymorph/pingMorph.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanseSecure/SLAE/HEAD/6_polymorph/pingMorph.nasm -------------------------------------------------------------------------------- /6_polymorph/shell.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanseSecure/SLAE/HEAD/6_polymorph/shell.nasm -------------------------------------------------------------------------------- /6_polymorph/shellMorphed.nasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanseSecure/SLAE/HEAD/6_polymorph/shellMorphed.nasm -------------------------------------------------------------------------------- /7_customCrypter/decrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanseSecure/SLAE/HEAD/7_customCrypter/decrypt.py -------------------------------------------------------------------------------- /7_customCrypter/encrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanseSecure/SLAE/HEAD/7_customCrypter/encrypt.py -------------------------------------------------------------------------------- /7_customCrypter/shellcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanseSecure/SLAE/HEAD/7_customCrypter/shellcode.c -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanseSecure/SLAE/HEAD/README.md --------------------------------------------------------------------------------