Results 1 to 1 of 1

Thread: Canlı Tv Sitesinde Çalışan Kod Bozuldu

  1. Go to Thank YouDownload #1
    Go to Thank You
    Yeni Üye Altunkral's Avatar

    Info

    Go to Top of Post

    Default Canlı Tv Sitesinde Çalışan Kod Bozuldu

    Arkadaşlar selamlar birkaç gün önceye kadar sıkıntısız calışan bir koddu bu şuan veriyi çekmiyor buyuk ihtimalle site koruma yaptı sizlerden ricam benim bulamadığım sorun konusunda yardımcı olur musunuz?

    <?php

    $Live = $_GET['HLS'];

    $ch = curl_init('https://tr.canlitv.team/'.$Live);

    curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);

    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($ch, CURLOPT_HTTPHEADER, array(
    'Content-Type: application/x-www-form-urlencoded',
    'Referer: [Sadece kayıtlı ve aktif kullanıcılar bağlantıları görebilir.] Kayıt Olmak İçin Tıklayınız..',
    ));
    $site = curl_exec($ch);
    curl_close ($ch);
    preg_match('#<iframe width="100%" height="100%" src="(.*?)"#', $site, $icerik);
    $Embed = $icerik[1];
    //header ("Location: $Link");
    //print_r($Link);




    $ch = curl_init($Embed);
    curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, false);
    curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($ch, CURLOPT_HTTPHEADER, array(
    'Content-Type: application/x-www-form-urlencoded',
    'Referer: [Sadece kayıtlı ve aktif kullanıcılar bağlantıları görebilir.] Kayıt Olmak İçin Tıklayınız..',
    ));
    $site = curl_exec($ch);
    curl_close ($ch);
    preg_match('#file: \'(.*?)\'#', $site, $icerik);
    $Link = $icerik[1];
    header ("Location: $Link");
    ?>

    Kod bu site adresi kodda yazıyor birde siz dener misiniz?




  2. The Following 2 Users Say Thank You to Altunkral For This Useful Post:

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •