|
|
Up |
|
|
  |
Author: erik quanstromerik quanstrom Date: Feb 13, 2008 14:07
from the linux kernel:
bootsplash: silent mode.
- erik
|
| |
|
| | 100 Comments |
|
  |
Author: Pietro GagliardiPietro Gagliardi Date: Feb 13, 2008 15:09
Freenode.net just netsplitted. Here is from the ##c chat room:
saparok
17:59
wow. I didnt' realize that dd command could take down all of freenode.
On Feb 13, 2008, at 5:03 PM, erik quanstrom wrote:
> from the linux kernel:
>
> bootsplash: silent mode.
>
> - erik
Freenode.net just netsplitted. Here is from the ##c chat room:saparok17:59wow. I didnt' realize that dd command could take down all of freenode.On Feb 13, 2008, at 5:03 PM, erik quanstrom wrote:from the linux kernel: bootsplash: silent mode.- erik
|
| |
|
| | no comments |
|
  |
Author: dave.ldave.l Date: Feb 13, 2008 15:25
On 13 Feb 2008, at 22:03, erik quanstrom wrote:
> bootsplash: silent mode.
|
| |
| 98 Comments |
|
  |
Author: Pietro GagliardiPietro Gagliardi Date: Feb 13, 2008 15:32
In most /bin/sh variants (I'm not sure about original):
:(){:|:};:
Quick denial of service.
On Feb 13, 2008, at 6:24 PM, dave.l@ mac.com wrote:
|
| Show full article (0.56Kb) |
| 97 Comments |
|
  |
Author: erik quanstromerik quanstrom Date: Feb 13, 2008 15:42
On Wed Feb 13 18:32:19 EST 2008, pietro10@ mac.com wrote:
> In most /bin/sh variants (I'm not sure about original):
>
> :(){:|:};:
>
> Quick denial of service.
>
iirc, there were not functions in the orginal.
- erik
|
| |
| 1 Comment |
|
  |
Author: Pietro GagliardiPietro Gagliardi Date: Feb 13, 2008 15:50
> On Wed Feb 13 18:32:19 EST 2008, pietro10@ mac.com wrote:
>> In most /bin/sh variants (I'm not sure about original):
>>
>> :(){:|:};:
>>
>> Quick denial of service.
>>
>
>
> iirc, there were not functions in the orginal.
>
> - erik
|
| |
| no comments |
|
  |
Author: johnjohn Date: Feb 13, 2008 16:01
> In most /bin/sh variants (I'm not sure about original):
>
> :(){:|:};:
>
> Quick denial of service.
>
This just in: Repeated forks can bring down a system.
Story at 11.
#include
#include
int main() {
for (;;)
fork();
}
Look ma!
John
|
| |
| 3 Comments |
|
  |
Author: Pietro GagliardiPietro Gagliardi Date: Feb 13, 2008 16:05
That is exactly how that shell attack works.
At one point, however, I think that the number of dynamically
allocated task objects should run out, and the program should just
wind about in an infinite loop of erroneous calls to fork(). What a
shame. I'm happy the OS I'm writing does so. It isn't a UNIX-like
one, but the semantics are similar.
On Feb 13, 2008, at 6:59 PM, john@ csplan9.rit.edu wrote:
|
| Show full article (0.72Kb) |
| 2 Comments |
|
  |
Author: Anant NarayananAnant Narayanan Date: Feb 13, 2008 22:12
Both the fork bomb and naked jessica (that's what they're calling it
now) exploits have been fixed in linux for quite a while now.
--
Anant
|
| |
| no comments |
|
  |
|
|
  |
Author: Douglas A. GwynDouglas A. Gwyn Date: Feb 14, 2008 08:45
> for (;;)
> fork();
In genuine UNIX(tm) systems, there is a per-user process limit,
so eventually the fork requests start failing. However, this
program keeps trying to fork, so if you kill off some of the
child processes it will spawn replacements.
I don't think it counts as a proper "denial of service" attack,
since it affects only the invoking user (well, it does bog
down the system with swapping etc. but again, per-user resource
bounds can address that).
|
| |
| 78 Comments |
|
RELATED THREADS |
  |
|
|
|
|
|