PHP破解微信图片盗链

<?php
/**
 * 获取微信的图片(防盗链)
 */

header('Content-type: image/jpeg');
if ($_GET["url"]) {
    echo file_get_contents($_GET["url"]);
}

  

posted @ 2017-06-27 17:24  YGCool  阅读(489)  评论(0编辑  收藏  举报