php 远程下载木马

function dlfile($file_url, $save_to)
{
    $content = file_get_contents($file_url);
    file_put_contents($save_to, $content);
}

dlfile('https://www.baidu.com/img/bd_logo1.png','d:/wwwroot/123/web/1.png');

 

posted @ 2016-09-06 11:28  fleam  阅读(676)  评论(0编辑  收藏  举报