Edit report at http://bugs.php.net/bug.php?id=53210&edit=1

 ID:                 53210
 Updated by:         [email protected]
 Reported by:        yoyahack at undersecurity dot net
 Summary:            mysql_fetch_assoc (mysql_query (SQL) inside a while
                     loop can cause DoS
-Status:             Open
+Status:             Bogus
 Type:               Bug
 Package:            Filesystem function related
 Operating System:   Fedora 13
 PHP Version:        5.3.3
 Block user comment: N

 New Comment:

Sorry, but your problem does not imply a bug in PHP itself.  For a
list of more appropriate places to ask for help using PHP, please
visit http://www.php.net/support.php as this bug system is not the
appropriate forum for asking support questions.  Due to the volume
of reports we can not explain in detail here why your report is not
a bug.  The support channels will be able to provide an explanation
for you.

Thank you for your interest in PHP.




Previous Comments:
------------------------------------------------------------------------
[2010-11-01 08:21:31] exilianmelody at gmail dot com

i am so sorry for leaved my incorrect mail adress,:)

------------------------------------------------------------------------
[2010-11-01 08:12:54] exilianmelody at google dot com

hi,buddy, in my thought,you just have a structure mistake,because in
while loop,it have to have a static value,but your argument is a dynamic
generated,so everytime anyhow the while loop is true,and each output
record is the first item in your table,except your table is empty.solve
it below:



$link = mysql_connect('127.0.0.1','root', 'root');



mysql_select_db('test', $link);



$resouce = mysql_query('select * from table', $link);



while($row = mysql_fetch_assoc($resource))

{

        echo $row['col1'].nl2br('/r');

}

------------------------------------------------------------------------
[2010-10-30 22:54:59] yoyahack at undersecurity dot net

Description:
------------
If income mysql_fetch_assoc (mysql_query (SQL) within a while loop cause
denial 

of service

Test script:
---------------
<?php 

$link = mysql_connect('127.0.0.1','user', 'pass');

mysql_select_db('db', $link);



while($row = mysql_fetch_assoc(mysql_query('select * from table',
$link)))

{

echo $row['id'];

}

?>



Expected result:
----------------
it generates an infinite loop that never ends



------------------------------------------------------------------------



-- 
Edit this bug report at http://bugs.php.net/bug.php?id=53210&edit=1

Reply via email to