vote up 12 vote down star
5

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$ :(){ :|:& };:

flag

67% accept rate
"The happy fat pregnant woman with the appendectomy scar is sitting on a hemorrhoid donut" – Paul Tomblin Feb 5 at 13:19
I'm sure this is an exact duplicate, but I can't find the original question right now. – SpoonMeiser Feb 5 at 13:46

4 Answers

vote up 36 vote down check

That defines a function called : which calls itself twice (Code: : | :). It does that in the background (&). After the ; the function definition is done and the function : gets started.

So every instance of : starts two new : and so on... Like a binary tree of processes...

Written in plain C that is:

while(1) {
    fork();
}
link|flag
Ouch that hurts. – Gamecat Feb 5 at 13:19
The C equivalent isn't exactly the same (as each process will spawn theoretically infinite amounts of itself, whereas each bash-forkbomb process will "only" spawn two processes), although both have the same result.. – dbr Feb 13 at 10:32
1  
dbr, yes thats right. I though about that at the time of writing, but that C code is cleaner and simpler. The bash one is like a binary tree, the C one like a n-ary tree. – Johannes Weiß Feb 13 at 13:27
vote up 10 vote down

That's called a fork bomb.

link|flag
vote up 20 vote down
:(){ :|:& };:

..defines a function named :, which spawns itself (twice, one pipes into the other), and backgrounds itself.

With line breaks:

:()
{
    :|:&
};
:

Renaming the : function to forkbomb:

forkbomb()
{
    forkbomb | forkbomb &
};
forkbomb

You can prevent such attacks by using ulimit to limit the number of processes-per-user:

$ ulimit -u 50
$ :(){ :|:& };:
-bash: fork: Resource temporarily unavailable
$

More permanently, you can use /etc/security/limits.conf (on Debian and others, at least), for example:

* hard nproc 50

Of course that means you can only run 50 processes, you may want to increase this depending on what the machine is doing!

link|flag
1  
Upvoted - giving the : function a clearer name is exactly how I would have unobfuscated the code. – slim Feb 9 at 10:44
+1 for mention of ulimits – SpoonMeiser Mar 11 at 0:46
vote up 1 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.