I stumbled upon this page and can't understand how this works.
This command "exponentially spawns subprocesses until your box locks up".
But why? What I grok less are the colons.
user@host$ :(){ :|:& };:
|
5
|
|||||
|
|
|
That defines a function called So every instance of : starts two new : and so on... Like a binary tree of processes... Written in plain C that is:
|
||||||||
|
|
|
That's called a fork bomb. |
||
|
|
|
|
..defines a function named With line breaks:
Renaming the
You can prevent such attacks by using
More permanently, you can use
Of course that means you can only run 50 processes, you may want to increase this depending on what the machine is doing! |
||||||
|
|
|
I've had varying effects when trying this. Depending (I believe) on the configured upper limit for the number of processes and the CPU power, it caused barely a bump on some systems while completely freezing others. |
||
|
|