Why isn't there any native limit preventing a fork bomb?

1

From https://unix.stackexchange.com/q/85411 (and the link shared in ) I know it's possible to avoid self-duplicating processes known as "fork bomb" on Linux, however, it's only thanks to an user-set limit. I didn't find a similar trick for Windows, and didn't search for Mac OS but I bet it's the same. However, it is sure that these are all natively vulnerable to this old informatic flaw.

So my question: how can something that old still strike today on our modern computers without any kind of natively-implemented defense, when there's ways to avoid that and it's easier than ever ?

CodeTalker

Posted 2019-12-14T10:04:56.080

Reputation: 11

But there is a limit?

– user1686 – 2019-12-14T11:03:34.133

@grawity Didn't see that, thanks ! However, though there's a limit preventing the system to completely crash, it still makes the system hanging and partially unusable. Furthermore such security is only on Linux. – CodeTalker – 2019-12-14T12:23:26.520

No answers