Date: Sun, 26 Jul 1998 20:25:48 +1000 (EST) From: Nicholas Charles Brawn <ncb05@uow.edu.au> To: freebsd-security@FreeBSD.ORG Subject: preventing fork bombs Message-ID: <Pine.SOL.3.96.980726201812.20876A-100000@banshee.cs.uow.edu.au>
next in thread | raw e-mail | index | archive | help
How can someone limit/prevent fork bomb attacks on your system. I
recently tried one on myself after modifying kern.maxprocperuid (thinking
that should prevent it), and got my machine up to a load of over 150
before I killed it.
The simple code used was:
#include <unistd.h>
main(void) {
while(1) {
fork();
}
}
The above effectively freezing my system. :\
Anyone got any ideas?
Nick
--
Email: ncb05@uow.edu.au - http://rabble.uow.edu.au/~nick
Key fingerprint = DE 30 33 D3 16 91 C8 8D A7 F8 70 03 B7 77 1A 2A
"When in doubt, ask someone wiser than yourself..." -unknown
To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe security" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?Pine.SOL.3.96.980726201812.20876A-100000>
