sharer.php page refresh can lead to DOS
-
the sharer.php is under certain conditions refreshing the page. see the following code:
echo '<meta http-equiv="refresh" content="0;url='.$url.'">';
This can lead to a DOS of the corresponding server. I suggest to change this to only try to reload every 1-5 seconds. So changing this to:
echo '<meta http-equiv="refresh" content="5;url='.$url.'">';
most likely would make sense.
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘sharer.php page refresh can lead to DOS’ is closed to new replies.